随笔 - 15  文章 - 5  trackbacks - 0
<2009年3月>
22232425262728
1234567
891011121314
15161718192021
22232425262728
2930311234

常用链接

留言簿(1)

随笔分类

随笔档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜

 1 <?xml version="1.0"?>
 2 <!DOCTYPE hibernate-mapping PUBLIC 
 3     "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
 4     "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
 5 <hibernate-mapping >
 6     <class name="com.simplye.hibernate.User" table="t_user">
 7         <id name="id">
 8             <generator class="native"/>
 9         </id>
10         <property name="name"/>
11         
12         <many-to-one name="group" column="t_group"/>
13         
14     </class>    
15 </hibernate-mapping>

多段实用外键



 1 <?xml version="1.0"?>
 2 <!DOCTYPE hibernate-mapping PUBLIC 
 3     "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
 4     "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
 5 <hibernate-mapping >
 6     <class name="com.simplye.hibernate.Group" table="t_group">
 7         <id name="id">
 8             <generator class="native"/>
 9         </id>
10         <property name="name"/>
11     </class>    
12 </hibernate-mapping>

posted on 2009-03-02 14:43 simplye 阅读(181) 评论(0)  编辑  收藏 所属分类: hibernate note

只有注册用户登录后才能发表评论。


网站导航: