Hibernate一对多关联映射的配置及其级联删除问题
package com.exam.entity; import java.util.Set; public class QuestionType { private String typeName; private char typeUniqueness; private Set quesion; public String getTypeName() { return typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } public char getTypeUniqueness() { return typeUniqueness; } public void setTypeUniqueness(char typeUniqueness) { this.typeUniqueness = typeUniqueness; } public Set getQuesion() { return quesion; } public void setQuesion(Set quesion) { this.quesion = quesion; } }
<hibernate-mapping package="com.exam.entity"> <class name="QuestionType" table="exam_question_type"> <id name="typeName" column="type_name"></id> <property name="typeUniqueness" column="type_uniqueness"/> <set name="quesion" inverse="true" cascade="delete"> <key column="question_type_name"/> <one-to-many class="Question"/> </set> </class> </hibernate-mapping>
package com.exam.entity; import java.util.Date; public class Question { private int questionNo; private QuestionType questionType; private String questionsTitle; public int getQuestionNo() { return questionNo; } public void setQuestionNo(int questionNo) { this.questionNo = questionNo; } public QuestionType getQuestionType() { return questionType; } public void setQuestionType(QuestionType questionType) { this.questionType = questionType; } public String getQuestionsTitle() { return questionsTitle; } public void setQuestionsTitle(String questionsTitle) { this.questionsTitle = questionsTitle; } }
<hibernate-mapping package="com.exam.entity"> <class name="Question" table="exam_question"> <id name="questionNo" column="question_no" > <generator class="increment" /> </id> <many-to-one name="questionType" column="question_type_name"/> <property name="questionsTitle" column="questions_title" length="200" /> </class> </hibernate-mapping>
column:设定和持久化类的属性对应的表的外键
class:设定持久化类的属性的类型
cascade:设定是否级联
lazy:设定是否延迟加载
cascade:设置是否级联
inverse:设定反向控制,如果为true则一的一端不维护外键
<key>:设定与所关联的持久化类对应的表的外键。
one-to-many:设定所关联的持久化类
<set name="quesion" inverse="true" cascade="delete"> <key column="question_type_name"/> <one-to-many class="Question"/> </set>
这里设置inverse表示一的一端不维护外键,设置cascade=”delete”表示删除一的一端时对关联到得多的所有的对象也一起删除
<many-to-one name="questionType" column="question_type_name"/>
这里的column表示外键的名,需要和一的一端设置的key标签里的column保持一致,表示维护同一个键值。
session.beginTransaction(); QuestionType questionType = (QuestionType) session.load(QuestionType.class, "判断题"); session.delete(questionType); session.getTransaction().commit();
这里使用load查上来的对象是持久状态的(Persistent),只有是Persistent状态的对象才可以使用session.delete()操作进行级联删除,由new创建的对象属于Transient状态,不能进行session.delete()操作。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。