1-2 hibernate主配置文件hibernate.cfg.xml详解

详 http://www.cnblogs.com/biehongli/p/6531575.html

Hibernate的主配置文件hibernate.cfg.xml

1:Hibernate的主配置文件的名字必须是hibernate.cfg.xml(主要配置文件中主要配置:数据库连接信息,其他参数,映射信息):

常用配置查看源码:Hibernate\hibernate-distribution-3.6.0.Final\project\etc\hibernate.properties

1.1:主配置文件主要分为三部分:

注意:通常情况下,一个session-factory节点代表一个数据库;

 1.1.1:第一部  数据库连接部分

注意"hibernate.connection.driver_class"中间的 _(杠);

 1.1.2:第二部分 其他相关配置,包含打印sql语句,格式化sql语句,创建数据表或者更新数据表等等

1.1.3:第三部分加载所有的映射; 

配置文件

<?xml version="1.0" encoding='utf-8'?>

1 <!DOCTYPE hibernate-configuration PUBLIC

2     "-//Hibernate/Hibernate Configuration DTD 3.0//EN"

3     "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

4

5 <hibernate-configuration>

6     <!-- 通常,一个session-factory节点代表一个数据库  -->

7     <session-factory>

8         <!-- (1):数据连接配置/(2):加载所有的映射(*.hbm.xml)-->

9

10          <!-- 第一部分:数据连接配置 -->

11          <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>

12          <property name="hibernate.connection.url">jdbc:mysql:///test</property>

13          <property name="hibernate.connection.username">root</property>

14          <property name="hibernate.connection.password">123456</property>

15          <!-- 数据库方法配置:mysql数据库的方言

16                hibernate在运行的时候,会根据不同的方言生成符合当前数据库语法的sql

17          -->

18          <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

<!-- <property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect-->

19

20          <!-- 第二部分:其他相关配置 -->

21          <!-- 2.1:hibernate.show_sql显示hibernate运行时候执行的sql语句 -->

22          <property name="hibernate.show_sql">true</property>

23          <!-- 2.2:格式化sql -->

24          <property name="hibernate.format_sql">true</property>

25          <!-- 2.3:自动建表 -->

26          <property name="hibernate.hbm2ddl.auto">create</property>

27          <!-- <property name="hibernate.hbm2ddl.auto">update</property>

28           -->

29          <!--

30              每次在创建sessionFactory时执行创建表,当调用sessionFactory的close方法的时候,删除表

31              #hibernate.hbm2ddl.auto create-drop

32             每次都重新建表,如果已经存在就先删除再创建

33             #hibernate.hbm2ddl.auto create

34             如果表不存在就创建,表存在就不创建

35             #hibernate.hbm2ddl.auto update

36             生成环境时候执行验证,当映射文件的内容与数据库表结构不一样的时候就报错

37             #hibernate.hbm2ddl.auto validate

38           -->

39

40

41          <!-- 第三部分:加载所有的映射(*.hbm.xml) -->

42          <mapping resource="com/bie/po/User.hbm.xml"/>

43

44     </session-factory>

45 </hibernate-configuration>

纯代码 以mysql和oracle为例

********************************************************

<?xml version="1.0" encoding='utf-8'?>

<!DOCTYPE hibernate-configuration PUBLIC

"-//Hibernate/Hibernate Configuration DTD 3.0//EN"

"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

<session-factory>

<!-- 第一部分:数据连接配置 -->

<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>

<!--<property name="hibernate.connection.driver_class">oracle.jdbc.OracleDriver</property> -->

<property name="hibernate.connection.url">jdbc:mysql:///test</property>

<property name="hibernate.connection.username">root</property>

<property name="hibernate.connection.password">123456</property>

<!-- 数据库方法配置:mysql数据库的方言语     -->

<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

<!-- <property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property>-->

<!-- 第二部分:其他相关配置 -->

<!-- 2.1:hibernate.show_sql显示hibernate运行时候执行的sql语句 -->

<property name="hibernate.show_sql">true</property>

<!-- 2.2:格式化sql -->

<property name="hibernate.format_sql">true</property>

<!-- 2.3:自动建表 -->

<property name="hibernate.hbm2ddl.auto">update</property>

<!-- 第三部分:加载所有的映射(*.hbm.xml) -->

<mapping resource="com/bie/po/User.hbm.xml"/>

</session-factory>

</hibernate-configuration>

(⊙o⊙)(⊙o⊙)(⊙o⊙)(⊙o⊙)(⊙o⊙)(⊙o⊙)(⊙o⊙)(⊙o⊙)

其他配置

1.连接池

hihibernate.connection.pool_size:最大连接池数

hibernate实现了一种插件结构,可以集成任何连接池软件,对c3p0连接池提供了内嵌支持配置如下

1-2 hibernate主配置文件hibernate.cfg.xml详解

JNDI是java命名与目录接口(java naming and directory interface)

在hibernate中,除了可以通过JDBC连接数据库在还可以通过jndi配置数据源,建立数据库的连接。

配置如下

1-2 hibernate主配置文件hibernate.cfg.xml详解

1-2 hibernate主配置文件hibernate.cfg.xml详解

2.二级缓存

hibernate共有两级缓存,第一级缓存是session级的缓存,它是事务范围的缓存,可以由hibernate自动管理。

第二级缓存是由sessionFactory管理的进程级缓存,可以在hibernate.cfg.xml配置文件中进行配置和更改,可以动态加载和卸载。

1-2 hibernate主配置文件hibernate.cfg.xml详解

3.事务管理,

hibernate实现对JDBC的轻量级的封装,本身并没有提供事务管理的功能,它依赖于JDBC或者JAR的事务管理功能。

hibernate默认使用JDBC的事务管理,可配置指定的transaction的工厂类别

1-2 hibernate主配置文件hibernate.cfg.xml详解

4. 其他配置

1-2 hibernate主配置文件hibernate.cfg.xml详解

上一篇:MSP430系列单片机特性及应用领域


下一篇:性能测试工具Gatling - 设置Recorder