首页 > 移动平台 > 详细

Hibernate Many-To-One Unidirectional Mapping

时间:2015-10-24 07:51:54      阅读:340      评论:0      收藏:0      [点我收藏+]

Foreign key is always added on the "many" side;

User-Group:Many-to-one

1.Annotation

User class: Just need to add @ManyToOne tag before group variable

Group class:nothing

public class User {
   private int id;
   private String name;
   private Group group;
       
    @Id
    @GeneratedValue
    public int getId() {
        return id;
    }
    @ManyToOne
    public Group getGroup() {
        return group;
    }
    public void setGroup(Group group) {
        this.group = group;
    }
    
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}

public class Group {
    private int id;
    private String name;

    @Id
    @GeneratedValue
    public int getId() {
        return id;
    }
    
    public void setId(int id) {
        this.id = id;
    }
    
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }    
}

 

2.XML

User: <many-to-one name="xx of getXX" column="xxx"(optional)>

Group:nothing!

<class name="User" table ="U_User">
   <id name="id"></id>
    <property name="name"></property>
    <!-- column="xx" name column as xx in DB -->
    <many-to-one name="group" column="groupId" >
   </many-to-one>
</class>


<hibernate-mapping package="com.hibernate.model">
<class name="Group" table="T_Group">
   <id name="id"></id>
    <property name="name"></property>
</class>

 

Hibernate Many-To-One Unidirectional Mapping

原文:http://www.cnblogs.com/fifi043/p/4906118.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!