首页 > 代码库 > Hibernatedemo1

Hibernatedemo1

Hibernatedemo1

<?xml version="1.0"?><!DOCTYPE hibernate-configuration SYSTEM "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd" PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN">-<hibernate-configuration>-<session-factory><!-- 显示执行SQL语句 --><property name="show_sql">true</property><!-- 驱动 --><property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property><!-- 数据库url--><property name="hibernate.connection.url">jdbc:mysql:///hibernate_db</property><!-- 访问数据库用户名 --><property name="hibernate.connection.username">root</property><!-- 访问数据库密码 --><property name="hibernate.connection.password">root</property><!-- 方言(为了更好的操作具体的数据库) 如果使用的mysql数据版本在5.5之后的话,方言通常建议使用MySQL5InnoDBDialect MySQLDialect 不支持事务 MySQLInnoDBDialect 支持事务 --><property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property><!-- 自动创建表结构配置 create-drop 在程序启动的时候创建对应数据库表结构,当SessionFatory关闭的时候会将创建的表结构删除 create 在每次程序启动的时候先删除上次创建的数据库表结构,然后再创建对应新数据库表结构。 update 在每次启动的时候会追加修改的表结构,但是不会影响原来的数据 (通常用这个) validate 在每次启动的时候会验证并修改的表结构。 --><property name="hibernate.hbm2ddl.auto">create</property><!-- 引入对应的需要持久化类的配置文件 --><mapping resource="org/fkjava/bean/Person.hbm.xml"/></session-factory></hibernate-configuration>
<?xml version="1.0"?><!DOCTYPE hibernate-mapping SYSTEM "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"><!-- 本文件就是一个java对象到关系数据库的映射配置文件 -->-<hibernate-mapping package="bean"><!-- class 配置 类 对应表的映射配置 name 表示类名 table 表示关系数据库中的表名 -->-<class table="t_person" name="Person"><!-- id 指定Person类中那个属性是Id -->-<id name="id"><!-- id生成策略 --><generator class="native"/></id><!-- Person类的其他属性配置 name 对应 类的属性 column 对应表的字段名(如果没有设置column将使用name的值创建对应的列名) --><property name="name" column="t_name"/><property name="password" column="t_pass"/><!-- type 表示指定属性 对应的hibernate类型 date 2013-02-17 time 17:02:28 timestamp 2013-02-17 17:03:07 默认 --><property name="birthday" type="timestamp"/></class></hibernate-mapping>

 

Hibernatedemo1