我需要更好地理解这种休眠行为,并想知道我是否可以对此事有所了解。
有两个对象Contact
和Action
具有一对多关系,即一个Contact
可以有许多Action
与之关联。
我想要了解的是,当我将Action
存储到数据库时,如何存储Contact
s的集合(这是Contact
的属性)。
目前我正在做的是首先存储Contact
然后存储Action
。
以下是我的代码:
模型对象:
public class Contact implements Serializable{
private Integer contactID;
private String givenName;
private String familyName;
private Set<Action> actionSet = new HashSet<Action>();
}
public class Action implements Serializable{
private Integer actionID;
private String actionNote;
private Contact contact;
}
Hibernate Mapping:
<hibernate-mapping package="com.hibernate.model" schema="hibernatedb">
<class name="Contact" table="CONTACT">
<id column="CONTACT_ID" length="500" name="contactID">
<generator class="increment" />
</id>
<property column="GIVEN_NAME" generated="never" lazy="false" length="100" name="givenName" />
<property column="FAMILY_NAME" generated="never" lazy="false" length="100" name="familyName" />
<!-- one to many mapping with Action -->
<set inverse="true" lazy="false" name="actionSet" sort="unsorted">
<key column="CONTACT_ID" />
<one-to-many class="com.hibernate.model.Action" />
</set>
</class>
</hibernate-mapping>
<hibernate-mapping package="com.hibernate.model" schema="hibernatedb">
<class name="Action" table="ACTION">
<id column="ACTION_ID" length="500" name="actionID">
<generator class="increment" />
</id>
<property column="ACTION_NOTE" type="string" name="actionNote" />
<!-- many to one mapping with Contact -->
<many-to-one name="contact" column="CONTACT_ID"
class="com.hibernate.model.Contact" lazy="false" cascade="save-update" />
</class>
</hibernate-mapping>
这就是我现在试图存储它的方式:
public class ContactServiceImpl implements ContactService{
@Override
public void addContacts(Contact contact) {
contactDAO.addContact(contact);//saving the contact;
if((contact.getActionSet()!=null)&&(contact.getActionSet().size()>0)){
actionService.addAllActions(contact,contact.getActionSet());//saving actions, associated with the contact
}
}
}
请参阅,有两个操作导致保存Action
,因为它们是Contact
的属性,我相信当保存Contact
时,还必须保存Action
个。
请让我知道正确的方法。感谢
答案 0 :(得分:1)
尝试设置
<set cascade="all"....
这样,当您在Contact实体上调用save时,hibernate将保存您的Actions集。
有关详细信息,请参阅this答案。
另请参阅the documentation。