我想用OneTOMany選項創建2個實體類。以下是我的表格結構。OneToMany或ManyToMany在休眠映射
| | | |
| EVENTS | | PARTICIPANT |
|_____________| |__________________|
| | | |
| *EVENT_ID | --> | *EVENT_ID |
| EVENT_DATE | | *EMAIL |
| TITLE | | PARTICIPANT_NAME|
|_____________| |__________________|
事件ID將自動生成,與事件相關的參與者應與事件詳細信息一起保存。以下是我的實體類。
@Entity
@Table(name = "EVENTS")
public class Event{
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name = "event_id")
private Integer eventId;
@column(name = "event_date")
@Temporal(TemporalType.TIMESTAMP)
private Date eventDate;
@OneToMany(fetch = FetchType.EAGER)
@JoinColumn(name = "event_id")
private List<Participant> participantList;
//getters and setters
}
@Entity
@Table(name = "PARTICIPANT")
public class Participant{
@Id
@Column(name = "event_id")
private Integer eventId;
@Id
@column(name = "email")
private String email;
@Column(name = "participant_name")
private String participantName;
//getters and setters
}
在創建新事件時,我設置了參與者列表並嘗試保存。如果我通過更改日期來修改保存的事件並刪除一些參與者並添加新的參與者,我想更新參與者表,而無需額外的努力保存呼叫。哪一個將是使用的正確註釋。我正在使用Hibernate 4.3.10
版本。 注意我不想創建新的映射表,因爲我沒有整個參與者列表。提前致謝。