Book
<?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 package="org.kimnin.hibernate">
<class name="Book" table="BOOK">
<id name="id" column="BOOK_ID">
<generator class="native" />
</id>
<property name="name" column="BOOK_NAME" />
</class>
</hibernate-mapping>
cfg
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.url">
jdbc:mysql://localhost:3306/kidocs
</property>
<property name="hibernate.connection.driver_class">
com.mysql.jdbc.Driver
</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password"></property>
<property name="dialect">
org.hibernate.dialect.MySQL5InnoDBDialect
</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.hbm2ddl.auto">create</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.format_sql">true</property>
<mapping resource="org/kimnin/hibernate/Book.hbm.xml" />
</session-factory>
</hibernate-configuration>
SchemaExport
new SchemaExport(new Configuration().configure()).create(true, true);
本文介绍了一个使用Hibernate框架进行数据库映射的具体配置实例。通过XML文件定义了Book类与数据库表BOOK之间的映射关系,并设置了数据库连接属性。展示了如何通过Hibernate进行对象关系映射(ORM)并自动生成SQL语句。
1935

被折叠的 条评论
为什么被折叠?



