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

Hibernate如何一个类映射两个表

时间:2015-11-18 14:07:05      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

一个User类有username,password属性,还有 otherInformation等其他属性,username和password映射到一个表,otherInformation等其他属性映射到另一 个表,使用User类时不会感觉到是两个表的的存在,如何配置User.mapping.xml文件进行配置??

 

这叫“Table per subclass”:

Xml代码  收藏代码

    <class name="Base" table="表1">  
        <id name="id" type="long" column="BASE_ID">  
            <generator class="native"/>  
        </id>  
        <property name="username" column="username"/>  
        <property name="password" column="password"/>  
        ...  
        <joined-subclass name="User" table="表2">  
            <key column="BASE_ID"/>  
            <property name="otherInformation" column="otherInformation"/>  
            ...  
        </joined-subclass>  
      
    </class>  

 

Hibernate如何一个类映射两个表

标签:

原文地址:http://www.cnblogs.com/lyunyu/p/4974263.html

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