hibernate多对多之中间表有多个字段

ame = name;
 }
 @Column(name = "sex")
 public int getSex() {
  return sex;
 }
 public void setSex(int sex) {
  this.sex = sex;
 }
 @OneToMany(mappedBy = "teacher",cascade=CascadeType.ALL)
 public Set<TeacherStudent> getTeacherStudentList() {
  return teacherStudentList;
 }
 public void setTeacherStudentList(Set<TeacherStudent> teacherStudentList) {
  this.teacherStudentList = teacherStudentList;
 }
}

中间表

@Entity
@Table(name = "T_TEACHERSTUDENT")
@SequenceGenerator(name = "SEQ_TEACHERSTUDENT", sequenceName = "SEQ_TEACHERSTUDENT")
public class TeacherStudent implements Serializable {
 private Long id;
 private Student2 student;
 private Teacher2 teacher;
 private String note1;
 private String note2;
 @Id
 @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SEQ_TEACHERSTUDENT")
 @Column(name = "ID", nullable = false, precision = 22, scale = 0)
 public Long getId() {
  return id;
 }
 public void setId(Long id) {
  this.id = id;
 }
 @Column(name = "note1")
 public String getNote1() {
  return note1;
 }
 public void setNote1(String note1) {
  this.note1 = note1;
 }
 @Column(name = "note2")
 public String getNote2() {
  return note2;
 }
 public void setNote2(String note2) {
  this.note2 = note2;
 }
 @ManyToOne(cascade=CascadeType.ALL)
 @JoinColumn(name = "student_id", unique = true)
 public Student2 getStudent() {
  return student;
 }
 public void setStudent(Student2 student) {
  this.student = student;
 }
 @ManyToOne
 @JoinColumn(name = "teacher_id", unique = true)
 public Teacher2 getTeacher() {
  return teacher;
 }
 public void setTeacher(Teacher2 teacher) {
  this.teacher = teacher;
 }
}

hibernate.cfg.xml 引入对象

 <mapping class="com.dvn.li.model.Student2"/>
  <mapping class="com.dvn.li.model.Teacher2"/>
  <mapping class="com.dvn.li.model.TeacherStudent"/>

测试:

SessionFactory sessionFactory = null;
  Session session = null;
  try {
   sessionFactory = HibernateUtil.getSessionFactory();
   session = sessionFactory.getCurrentSession();
   session.beginTransaction();
   Student2 s = new Student2();
   s.setName("小猪");
   Teacher2 t = new Teacher2();
   t.setName("小李");
   TeacherStudent ts=new TeacherStudent();
   ts.setStudent(s);
   ts.setTeacher(t);
   ts.setNote1("以呀呀!!!");
   session.save(s);
   session.save(t);
   session.save(ts);
   session.getTransaction().commit();
  } catch (Exception e) {
   if (session != null) {
    session.getTransaction().rollback();
   }
  }

测试通过!

 

如果自己做测试,可以通过SchemaExport导入表结构

SchemaExport export = new SchemaExport(new AnnotationConfiguration()
    .configure());
  export.create(true, true);


转自http://blog.sina.com.cn/s/blog_638ea2c50100u47v.html,感谢

记录学习情况

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值