码迷,mamicode.com
首页 > Web开发 > 详细

Hibernate学习之路(五)

时间:2017-07-15 14:59:21      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:cti   技术分享   nat   表示   man   func   http   双向   维护   

简述 多对多关系映射

多对多关系映射需要一张中间表来维护关系

                         技术分享

  

  一:Role类与Function类

1 public class Function {
2     private int id;
3     private String name;
4     private String code;
5     private String url;
6     private Set<Role> roles = new HashSet<Role>();
7     
8     set/get....
9 }
1 public class Role {
2     private int id;
3     private String name;
4     private Set<Function> functions = new HashSet<Function>();
5     
6         set/get.....
7 }

  二:配置hbm.xml

<hibernate-mapping package="cn.pojo">
    <class name="Role">
        <id name="id">
            <generator class="native"></generator>
        </id>
        
        <property name="name"></property>
        
        <!-- 多对多 -->
        <set name="functions" table="rol_func">
            <!-- 表示当前类映射到关系表中的列 -->
            <key column="rid"></key>
            <!-- 表示所对应的另一方在关系表中的列 -->
            <many-to-many column="fid" class="Function"></many-to-many>
        </set>
    </class>
</hibernate-mapping>

 

双向多对多映射同理配置hbm.xml

  

 

Hibernate学习之路(五)

标签:cti   技术分享   nat   表示   man   func   http   双向   维护   

原文地址:http://www.cnblogs.com/DogLiLoveCat/p/7182511.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!