码迷,mamicode.com
首页 > 其他好文 > 详细

name(实例化类名).hbm.xml文件案例

时间:2017-03-03 14:58:25      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:bsp   style   logs   name   ping   oct   view   uuid   org   

[html] view plain copy

 print?
<span xmlns="http://www.w3.org/1999/xhtml"><?xml version="1.0"?>  
  
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"  
  
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">  
  
   
  
<hibernate-mapping>  
  
    <class name="com.bzu.hibernate.Student" table="student">  
  
        <id name="id" column="id" type="string">  
  
            <generator class="uuid"></generator>  
  
        </id>  
  
        <property name="name" column="name" type="string"></property>  
  
        <property  name="cardId"     column="cardId"type="string"></property>  
  
        <property name="age" column="age" type="int"></property>  
  
        <set name="courses" table="student_course" cascade="save-update">  
  
            <key column="stu_id"></key>  
  
            <many-to-many class="com.bzu.hibernate.Course" column="course_id">  
  
            </many-to-many>  
  
        </set>  
  
    </class>  
  
</hibernate-mapping></span> 

 

name(实例化类名).hbm.xml文件案例

标签:bsp   style   logs   name   ping   oct   view   uuid   org   

原文地址:http://www.cnblogs.com/kuangwong/p/6496660.html

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