本来是想等全部框架测试完以后再统一发布的,但是随着测试的一点点增加感觉把需要叙述的东西放在一起终将会是一场灾难。所以还是打算分成几章来描述,其中还包括一些有待解决的问题。短期很难腾出时间来仔细阅读Hibernate 5.x以后版本的官方文档,只能先记录下来。

首先声明一点,我在写这篇文章的时候结合了5.0.6和4.3.11两个版本,结果发现新版有不少变化,一些在4.3.11中正常的功能在新版本之中有很大不同。

一、通过Maven引入依赖

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.learnhow</groupId>
  5. <artifactId>Hibernate_Demo</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>Hibernate_Demo Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <dependencies>
  11. <!-- 引入新版依赖 -->
  12. <dependency>
  13. <groupId>org.hibernate</groupId>
  14. <artifactId>hibernate-core</artifactId>
  15. <version>5.0.6.Final</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>javax.servlet</groupId>
  19. <artifactId>servlet-api</artifactId>
  20. <version>2.5</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.slf4j</groupId>
  24. <artifactId>slf4j-simple</artifactId>
  25. <version>1.7.13</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.javassist</groupId>
  29. <artifactId>javassist</artifactId>
  30. <version>3.20.0-GA</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.transaction</groupId>
  34. <artifactId>jta</artifactId>
  35. <version>1.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <version>4.12</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <!-- Hibernate官方推荐的数据库连接池是c3p0 -->
  44. <dependency>
  45. <groupId>org.hibernate</groupId>
  46. <artifactId>hibernate-c3p0</artifactId>
  47. <version>5.0.6.Final</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <finalName>Hibernate5_Demo</finalName>
  52. </build>
  53. </project>

pom.xml

以上的配置中加入了对c3p0数据源的依赖,实际使用中却很少使用。因为在生产环境中,更主流的配置方法是通过Spring来结合各个模块,因此数据源也是在Spring中配置的。更何况现在国内比较流行使用alibaba的druid。

下面提供的是4.11.3版本的依赖,就是核心版本和c3p0版本号变了一下,其他都一样。

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.learnhow</groupId>
  5. <artifactId>Hibernate_Demo</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>Hibernate_Demo Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <dependencies>
  11. <!-- 引入4.x版本依赖包 -->
  12. <dependency>
  13. <groupId>org.hibernate</groupId>
  14. <artifactId>hibernate-core</artifactId>
  15. <version>4.3.11.Final</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>javax.servlet</groupId>
  19. <artifactId>servlet-api</artifactId>
  20. <version>2.5</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.slf4j</groupId>
  24. <artifactId>slf4j-simple</artifactId>
  25. <version>1.7.13</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.javassist</groupId>
  29. <artifactId>javassist</artifactId>
  30. <version>3.20.0-GA</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>javax.transaction</groupId>
  34. <artifactId>jta</artifactId>
  35. <version>1.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <version>4.12</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <!-- 这里配置的c3p0数据源最好和你所使用的hibernate版本一致 -->
  44. <dependency>
  45. <groupId>org.hibernate</groupId>
  46. <artifactId>hibernate-c3p0</artifactId>
  47. <version>4.3.11.Final</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <finalName>Hibernate4_Demo</finalName>
  52. </build>
  53. </project>

pom.xml

二、配置hibernate.cfg.xml文件

  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7. <session-factory>
  8. <!-- 数据源配置 -->
  9. <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  10. <property name="connection.url">jdbc:mysql://localhost:3306/learnhow</property>
  11. <property name="connection.username">root</property>
  12. <property name="connection.password">root</property>
  13. <!-- 数据源配置中只要使用了hibernate.c3p0.前缀,Hibernate就会调用c3p0数据源 -->
  14. <!-- 连接池中保留的最小连接数 -->
  15. <property name="hibernate.c3p0.min_size">5</property>
  16. <!-- 连接池中保留的最大连接数 -->
  17. <property name="hibernate.c3p0.max_size">10</property>
  18. <!-- 获得连接的超时时间,如果超过这个时间,会抛出异常,单位毫秒 -->
  19. <property name="hibernate.c3p0.timeout">1800</property>
  20. <!-- 当连接池中的连接耗尽的时候c3p0一次同时获取的连接数 -->
  21. <property name="hibernate.c3p0.acquire_increment">3</property>
  22. <!-- SQL 数据库方言,配置数据库类型 -->
  23. <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  24. <!-- session交给hibernate管理 -->
  25. <property name="current_session_context_class">thread</property>
  26. <!-- 是否显示sql语句 -->
  27. <property name="show_sql">true</property>
  28. <!-- 是否对语句格式化输出 -->
  29. <property name="format_sql">true</property>
  30. <!-- 使用hibernate管理输出表的创建及设置创建模式 -->
  31. <property name="hbm2ddl.auto">update</property>
  32.  
  33. <!-- 用户配置 -->
  34.  
  35. </session-factory>
  36. </hibernate-configuration>

hibernate.cfg.xml

值得一提的是,网上有很多讲关于如何在Hibernate中配置c3p0数据源的文章,几乎90%都是错误的。原因是Hibernate4.x版本以后就更改了数据源的配置方式,但是官方文档并没有及时修改,因此大家都仅仅是翻译了一下。我在配置的时候参考了5.0.6版本中有关配置c3p0数据源的说明。原文如下:

  1. 5.1.2. Using c3p0
  2.  
  3. Important
  4. To use this integration, the application must include the hibernate-c3p0 module jar (as well as its dependencies) on the classpath.
  5. Hibernate also provides support for applications to use c3p0 connection pooling. When using this c3p0 support, a number of additional configuration settings are recognized.
  6.  
  7. Transaction isolation of the Connections is managed by the ConnectionProvider itself. See Section 5.1.7, ConnectionProvider support for transaction isolation setting”.
  8.  
  9. Additional settings
  10.  
  11. hibernate.connection.driver_class
  12. The name of the JDBC Driver class to use
  13.  
  14. hibernate.connection.url
  15. The JDBC connection url.
  16.  
  17. Any settings prefixed with hibernate.connection. (other than the "special ones")
  18. These all have the hibernate.connection. prefix stripped and the rest will be passed as JDBC connection properties
  19.  
  20. hibernate.c3p0.min_size or c3p0.minPoolSize
  21. The minimum size of the c3p0 pool. See http://www.mchange.com/projects/c3p0/#minPoolSize
  22.  
  23. hibernate.c3p0.max_size or c3p0.maxPoolSize
  24. The maximum size of the c3p0 pool. See http://www.mchange.com/projects/c3p0/#maxPoolSize
  25.  
  26. hibernate.c3p0.timeout or c3p0.maxIdleTime
  27. The Connection idle time. See http://www.mchange.com/projects/c3p0/#maxIdleTime
  28.  
  29. hibernate.c3p0.max_statements or c3p0.maxStatements
  30. Controls the c3p0 PreparedStatement cache size (if using). See http://www.mchange.com/projects/c3p0/#maxStatements
  31.  
  32. hibernate.c3p0.acquire_increment or c3p0.acquireIncrement
  33. Number of connections c3p0 should acquire at a time when pool is exhauted. See http://www.mchange.com/projects/c3p0/#acquireIncrement
  34.  
  35. hibernate.c3p0.idle_test_period or c3p0.idleConnectionTestPeriod
  36. Idle time before a c3p0 pooled connection is validated. See http://www.mchange.com/projects/c3p0/#idleConnectionTestPeriod
  37.  
  38. c3p0.initialPoolSize
  39. The initial c3p0 pool size. If not specified, default is to use the min pool size. See http://www.mchange.com/projects/c3p0/#initialPoolSize
  40.  
  41. Any other settings prefixed with hibernate.c3p0.
  42. Will have the hibernate. portion stripped and be passed to c3p0.
  43.  
  44. Any other settings prefixed with c3p0.
  45. Get passed to c3p0 as is. See http://www.mchange.com/projects/c3p0/#configuration

Using c3p0

大意就是配置c3p0数据源首先需要引入相关依赖,然后只需要在配置文件中增加的任何一条语句是以hibernate.c3p0.为前缀,Hibernate就会默认使用c3p0管理数据库。

如果不需要配置第三方数据源也可以使用Hibernate直接操作数据库,只需要把有关c3p0的配置删掉就可以了。

  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7. <session-factory>
  8. <!-- 数据库连接配置 -->
  9. <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  10. <property name="connection.url">jdbc:mysql://localhost:3306/learnhow</property>
  11. <property name="connection.username">root</property>
  12. <property name="connection.password">root</property>
  13. <!-- JDBC连接池,开发环境设置1就可以了 -->
  14. <property name="connection.pool_size">1</property>
  15. <!-- 数据库方言 -->
  16. <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
  17. <!-- session交给hibernate管理 -->
  18. <property name="current_session_context_class">thread</property>
  19. <!-- 是否显示sql语句 -->
  20. <property name="show_sql">true</property>
  21. <!-- 是否对语句格式化输出 -->
  22. <property name="hbm2ddl.auto">update</property>
  23.  
  24. </session-factory>
  25. </hibernate-configuration>

hibernate.cfg.xml

三、获取SessionFactory

使用过Hibernate3.x版本的大概都知道,Hibernate是通过SessionFactory作为管理接口的。在4.x版本后,官方提供了一个新的配置方法,即所有的操作都必须首先在StandardServiceRegistry中注册。具体方法如下:

  1. package util;
  2.  
  3. import org.hibernate.SessionFactory;
  4. import org.hibernate.boot.registry.StandardServiceRegistry;
  5. import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
  6. import org.hibernate.cfg.Configuration;
  7.  
  8. public class HibernateUtil {
  9.  
  10. private static final SessionFactory sessionFactory = buildSessionFactory();
  11.  
  12. private static SessionFactory buildSessionFactory() {
  13. try{
  14. Configuration configuration = new Configuration().configure();
  15. StandardServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder().applySettings(configuration.getProperties()).build();
  16. SessionFactory sessionFactory = configuration.buildSessionFactory(serviceRegistry);
  17. return sessionFactory;
  18. } catch (Throwable ex) {
  19. System.err.println("Initial SessionFactory creation failed." + ex);
  20. throw new ExceptionInInitializerError(ex);
  21. }
  22. }
  23.  
  24. public static SessionFactory getSessionFactory() {
  25. return sessionFactory;
  26. }
  27. }

HibernateUtil4.java

但是在5.x版本中,官方又更改了获取SessionFactory的方法,我查了新版本的文档似乎并没有找到修改的原因和官方提供的获取SessionFactory的标准方法。以下我修改的代码:

  1. package util;
  2.  
  3. import org.hibernate.SessionFactory;
  4. import org.hibernate.boot.MetadataSources;
  5. import org.hibernate.boot.registry.StandardServiceRegistry;
  6. import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
  7.  
  8. public class HibernateUtil {
  9. private static final SessionFactory sessionFactory = buildSessionFactory();
  10.  
  11. public static SessionFactory getSessionFactory() {
  12. return sessionFactory;
  13. }
  14.  
  15. private static SessionFactory buildSessionFactory() {
  16. final StandardServiceRegistry registry = new StandardServiceRegistryBuilder().configure().build();
  17. try {
  18. SessionFactory sessionFactory = new MetadataSources(registry).buildMetadata().buildSessionFactory();
  19. return sessionFactory;
  20. } catch (Exception e) {
  21. System.out.println(e);
  22. StandardServiceRegistryBuilder.destroy(registry);
  23. }
  24. return null;
  25. }
  26. }

HibernateUtil5.java


以上三步基本可以完成对Hibernate的功能配置,不过实际使用中这样配置已经不多见了。

Hibernate 基础配置及常用功能(一)的更多相关文章

  1. Hibernate 基础配置及常用功能(三)

    本章重点讲述Hibernate对象的三种状态以及如何配置二级缓存 有关Hibernate的三种状态如何相互转换网上都能查到,官方文档描述的也比较详细.这里主要是针对几个重点方法做代码演示. 一.状态转 ...

  2. Hibernate 基础配置及常用功能(二)

    本章主要是描述几种经典映射关系,顺带比较Hibernate4.x和Hibernate5.x之间的区别. 一.建立测试工程目录 有关实体类之间的相互映射关系,Hibernate官方文档其实描述的非常详细 ...

  3. Hibernate学习笔记2.1(Hibernate基础配置)

    Hibernate基础配置 1.<property name="hbm2ddl.auto">update</property> 在SessionFactor ...

  4. Fedora 28 系统基础配置以及常用软件安装方式

    实验说明: 很多人说Linux很难用,很难上手,其实不然,倘若不玩游戏,其实很多发行版Linux都可以成为主力系统,就比如本章要讲的 Fedora 28.本章会从镜像来源.系统安装.基础配置和常用软件 ...

  5. JAVA基础语法:常用功能符以及循环结构和分支结构(转载)

    3.JAVA基础语法:常用功能符以及循环结构和分支结构 1.常用功能符 注释 ("文字"是被注释的部分) //文字 单行注释 /文字/ 多行注释 算术运算符 + - * / / 整 ...

  6. Ansible基础配置与常用模块使用

    环境介绍: Ansible服务端IP:192.168.2.215 Ansible客户端IP:192.168.2.216.192.168.2.218.192.168.2.113   一.创建Ansibl ...

  7. hibernate基础配置

    数据库表名和类名 一致 注解:可写可不写: XML:可写可不写: <class name="Student"> 不一致 注解:  public class Teache ...

  8. 3.Hibernate基础配置

    1.Hibernate.cfg.xml:hbm2ddl.auto 在SessionFactory创建时,自动检查数据库结构,或者将数据库schema的DDL导出到数据库 <property na ...

  9. Hibernate学习笔记2.3(Hibernate基础配置)

    映射,注释可以放在成员变量上面,也可以放在get方法上面 写在成员变量的话 破坏了java的面向对象思维 直接让hibernate访问内部的私有元素 要是能直接设指不合适哈哈 所以主张写在get方法上 ...

随机推荐

  1. package.json

    1,项目按住shift,右击鼠标:"在此处打开命令行窗口" 2,cmd输入:npm init 输入name,varsion....license项的信息,yes 3,此项目中自动创 ...

  2. 青蛙跳100级台阶算法,完整可运行,php版本

    /* 算法题目 * 2016年4月11日16:11:08 * 一只青蛙,一次可以跳1步,或者2步,或者3步,现在要跳100级台阶,请问青蛙有多少种上100级台阶的跳法 * 1步的有$n 2步的有$m ...

  3. PostGr-SQL 基本概念

    http://wenjiesu.iteye.com/blog/801129 [什么是schema?] 究竟什么是schema?这个问题困扰了我很久. 我们只讨论数据库中的schema,而不讨论XML中 ...

  4. The Path Attribute

    https://tools.ietf.org/html/rfc6265#section-5.1.1 4.1.2.4. The Path Attribute The scope of each cook ...

  5. OpenGL函数思考-glLoadIdentity

    函数原型: void glLoadIdentity(void) 函数说明: OpenGL为我们提供了一个非常简单的恢复初始坐标系的手段,那就是调用glLoadIdentity()命令.该命令是一个无参 ...

  6. 浅谈java抽象类和接口

    第一次,写这个,没有把图片放上来,有兴趣的可以点击连接看原文 http://note.youdao.com/noteshare?id=aecbd52b9240f23c0954e8086b848a17 ...

  7. JAVA枚举的作用与好处

    枚举是一种规范它规范了参数的形式,这样就可以不用考虑类型的不匹配并且显式的替代了int型参数可能带来的模糊概念 枚举像一个类,又像一个数组.Enum作为Sun全新引进的一个关键字,看起来很象是特殊的c ...

  8. 级联两个bootstrap-table。一张表显示相关的数据,通过点击这张表的某一行,传过去对应的ID,刷新另外一张表。

    二张表的代码(我用的插件,大家可以去网上直接下载http://issues.wenzhixin.net.cn/bootstrap-table/): <div class="contai ...

  9. lua UT测试工具

    luaunit Luaunit is a unit-testing framework for Lua, in the spirit of many others unit-testing frame ...

  10. DNS 中的协议字段详细定义

    DNS中的协议字段定义 Table of Contents 1 概述 2 DNS Classes 3 DNS OpCodes 4 DNS RCODEs 5 DNS Label Types 6 DNS资 ...