0
我在JPA中有一個小問題 @OneToMany(mappedBy =「table_name」)註釋。 因此,我們有2個表(截圖上的所有細節) 我添加了一個數據源,但我仍然有錯誤「無法解析屬性」Intellij IDEA @OneToMany mappedBy屬性錯誤解析
我能解決它的一些方法是什麼?
@Id
@Column(name = "state_id")
public int getStateId() {
return stateId;
}
public void setStateId(int stateId) {
this.stateId = stateId;
}
@Basic
@Column(name = "description")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Basic
@Column(name = "systemname")
public String getSystemName() {
return systemName;
}
public void setSystemName(String systemname) {
this.systemName = systemname;
}
@OneToMany(mappedBy = "note_states")
public Set<Note> getNotes() {
return notes;
}
public void setNotes(Set<Note> notes) {
this.notes = notes;
}
它的工作原理。謝謝! –