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

Posted 易小川

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了name(实例化类名).hbm.xml文件案例相关的知识,希望对你有一定的参考价值。

[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文件案例的主要内容,如果未能解决你的问题,请参考以下文章

休眠命名查询

配置文件详解和核心api讲解

可以使用类方法中的类名属性(在一行代码中)实例化 PHP 实例吗?

如何在hbm中做多列UniqueConstraint?

Hibernate配置文件详解

Could not parse mapping document from input stream