hibernate.cfg.xml讲解

时间:2024-10-22 15:05:38
 <session-factory>
<!-- 配置数据库连接信息 -->
<!-- 数据库驱动 -->
<property name="connection.driver_class">
com.mysql.jdbc.Driver
</property>
<!-- url 相当于:jdbc:mysql://localhost:3306/hibernate4-->
<property name="connection.url">
jdbc:mysql:///hibernate4
</property>
<property name="connection.username">root</property>
<property name="connection.password">root</property>
<!-- hibernate可选项信息 -->
<!-- 数据库方言 -->
<property name="dialect">
org.hibernate.dialect.MySQL5Dialect
</property>
<!-- 是否打印sql语句 -->
<property name="show_sql">true</property>
<!-- 格式化sql语句 -->
<property name="format_sql">true</property>
<!-- 数据库更新方式:
create:每次执行 都先把原有数据表删除,然后创建该表
create-drop:使用 create-drop时,在显式关闭SessionFactory时,
将drop掉数据库schema(表).
validate:检测
update:如果表不存在 则创建,有就不用创建
-->
<property name="hbm2ddl.auto">update</property>
<!-- 映射文件信息 -->
<mapping resource="cn/siggy/pojo/User.hbm.xml" />
</session-factory>