@ManyToOne 和@oneToMany中@@JoinColumn的区别

@ManyToOne中是在本类对应的数据库表中生成

例如

[c-sharp]  view plain copy
  1. @Entity  
  2. @Table(name="score")  
  3. public class Score {  
  4.     private int id;  
  5.     private Student student;  
  6.     private Course sourse;  
  7.     @Id  
  8.     @GeneratedValue  
  9.     public int getId() {  
  10.         return id;  
  11.     }  
  12.     public void setId(int id) {  
  13.         this.id = id;  
  14.     }  
  15.     @ManyToOne  
  16.     @JoinColumn(name="student_id")  
  17.     public Student getStudent() {  
  18.         return student;  
  19.     }  
  20.     public void setStudent(Student student) {  
  21.         this.student = student;  
  22.     }  
  23.     @ManyToOne  
  24.     @JoinColumn(name="course_id")  
  25.     public Course getSourse() {  
  26.         return sourse;  
  27.     }  
  28.     public void setSourse(Course sourse) {  
  29.         this.sourse = sourse;  
  30.     }  
  31.   
  32. }  

其中student_id和course_Id都是在score中生成的

 

 

而@oneToMany中是在多的一方生成对应一方面的ID         (@oneToOne 不常用)




转载的url:  http://blog.csdn.net/angryant/article/details/5495810

你可能感兴趣的:(Hibernate,JPA)