hibernate配置文件

建立数据库student,创建表student_t

hibernate配置文件
这里没有指定主键的形式,例如,自动增长、指派等。若采用hibernate将对象StudentBean映射到数据表student_t,可以通过配置文件指定主键的产生方式。
Student.hbm.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- 
    Mapping file autogenerated by MyEclipse Persistence Tools
-->
<hibernate-mapping>
    <class name="student.StudentBean" table="student_t" catalog="student">
        <id name="id" type="integer">
            <column name="id" />
          <generator class="assigned" />
        </id>
        <property name="name" type="string">
            <column name="name" length="65535"/>
        </property>
        <property name="age" type="integer">
            <column name="age"/>
        </property>
    </class>
</hibernate-mapping>


这里给出了主键的产生方式,是指派,同样可以指定是自动增长(increment)。

你可能感兴趣的:(Hibernate,xml,.net,MyEclipse)