免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2385 | 回复: 0
打印 上一主题 下一主题

hibernate关联映射1 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-11-23 11:58 |只看该作者 |倒序浏览

hibernate关联映射
1.  hibernate多对一关联映射(User ----->Group)

关联映射的本质:
    * 将关联关系映射到数据库,所谓的关联关系是对象模型在内存中的一个或多个引用

会在多的一端加入一个外键,指向一的一端,这个外键是由
中的column属性定义的,如果忽略了这个属性那么默认的外键与实体的属性一致

映射标签的定义示例:
hibernate-mapping>
    class name="com.bjsxt.hibernate.User" table="t_user">
       id name="id">
           generator class="native"/>
       id>
       property name="name"/>
         name="group" column="groupid" cascade="all"/>
    class>
hibernate-mapping>

hibernate-mapping>
    class name="com.bjsxt.hibernate.Group" table="t_group">
       id name="id">
           generator class="native"/>
       id>
       property name="name"/>
    class>
hibernate-mapping>
Cascade:级联就是对象的连锁操作.

2.  hibernate一对一主键关联映射(单向关联Person---->IdCard)
一对一主键关联映射:让两个实体对象的id保持相同,这样可以避免多余的字段被创建
具体映射:
Person
hibernate-mapping>
    class name="com.bjsxt.hibernate.Person" table="t_person">
       id name="id">
           generator class="foreign">
              param name="property">idCardparam>
           generator>
       id>
       property name="name"/>
       one-to-one name="idCard" constrained="true"/>
    class>
hibernate-mapping>
IdCard
hibernate-mapping>
    class name="com.bjsxt.hibernate.IdCard" table="t_idcard">
       id name="id">
           generator class="native"/>
       id>
       property name="cardNo"/>
    class>
hibernate-mapping>
3.  hibernate一对一主键关联映射(双向关联PersonIdCard)
需要在idcard映射文件中加入标签指向person,指示hibernate如何加载person默认根据主键加载.
Person
hibernate-mapping>
    class name="com.bjsxt.hibernate.Person" table="t_person">
       id name="id">
           generator class="foreign">
              param name="property">idCardparam>
           generator>
       id>
       property name="name"/>
       one-to-one name="idCard" constrained="true"/>
    class>
hibernate-mapping>
IdCard
hibernate-mapping>
    class name="com.bjsxt.hibernate.IdCard" table="t_idcard">
       id name="id">
           generator class="native"/>
       id>
       property name="cardNo"/>
        
    class>
hibernate-mapping>
4.  hibernate一对一唯一外键关联映射(单向关联Person---->IdCard)
一对唯一外键关联映射是多对一关联映射的特例可以采用标签,指定多的一端unique=true,这样就限制了多的一端的多重性为一通过这种手段映射一对一唯一外键关联.
hibernate-mapping>
    class name="com.bjsxt.hibernate.Person" table="t_person">
       id name="id">
           generator class="native"/>
       id>
       property name="name"/>
       many-to-one name="idCard" unique="true"/>
    class>
hibernate-mapping>

hibernate-mapping>
    class name="com.bjsxt.hibernate.IdCard" table="t_idcard">
       id name="id">
           generator class="native"/>
       id>
       property name="cardNo"/>
    class>
hibernate-mapping>
5.  hibernate一对一唯一外键关联映射(双向关联PersonIdCard)
一对一唯一外键关联双向,需要在另一端(idcard),添加标签,指示hibernate如何加载其关联对象,默认根据主键加载person,外键关联映射中,因为两个实体采用的是person的外键维护的关系,所以不能指定主键加载person,而要根据person的外键加载,所以采用如下映射方式:
hibernate-mapping>
    class name="com.bjsxt.hibernate.Person" table="t_person">
       id name="id">
           generator class="native"/>
       id>
       property name="name"/>
       many-to-one name="idCard" unique="true"/>
    class>
hibernate-mapping>

hibernate-mapping>
    class name="com.bjsxt.hibernate.IdCard" table="t_idcard">
       id name="id">
           generator class="native"/>
       id>
       property name="cardNo"/>
       one-to-one name="person" property-ref="idCard"/>
    class>
hibernate-mapping>

6. hihernate一对多关联映射(单向Classes----->Student)

一对多关联映射利用了多对一关联映射原理
多对一关联映射:在多的一端加入一个外键指向一的一端,它维护的关系是多指向一
一对多关联映射:在多的一端加入一个外键指向一的一端,它维护的关系是一指向多
也就是说一对多和多对一的映射策略是一样的,只是站的角度不同
在一一端维护关系的缺点:
    * 如果将t_student表里的classesid字段设置为非空,则无法保存
    * 因为不是在student这一端维护关系,所以student不知道是哪个班的,
      所以需要发出多余的update语句来更新关系
hibernate-mapping package="com.bjsxt.hibernate">
    class name="Classes" table="t_classes">
       id name="id">
           generator class="native"/>
       id>
       property name="name"/>
       set name="students">
           key column="classesid"/>
           one-to-many class="Student"/>
       set>
    class>
hibernate-mapping>

hibernate-mapping>
    class name="com.bjsxt.hibernate.Student" table="t_student">
       id name="id">
           generator class="native"/>
       id>
       property name="name"/>
    class>
hibernate-mapping>



本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/100458/showart_2101004.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP