Hibernate 主清单文件配制的详细介绍

Hibernate 主清单文件配制的详细介绍

1 Hiernate 清单配制文件

方式一 在工程src目录下创建 hibernate.cfg.xml 文件

Hiernate 开始加载时,会默认的方式去工程src目录下扫描 hibernate.cfg.xml文件,然后加载配制

public class H3Utils { private static SessionFactory factory = new Configuration().configure().buildSessionFactory(); /** * 获得线程绑定的session * @return */ public static Session getCurrentSession(){ return factory.getCurrentSession(); } }

方式二 在工程中的任何目录下创建 hibernate.cfg.xml 文件

这种方式的时候,需要在使用的时候 手动指定配制文件的路径

public class HBUtils { //提供一个工厂 (链式操作) private static SessionFactory factory = new Configuration() .configure("android/longs/study/config/hibernate.cfg.xml") .buildSessionFactory(); /** * 获得新的会话 * @return */ public static Session openSession(){ return factory.openSession() ; } /** * 获得当前线程中绑定的session * @return */ public static Session getCurrentSession(){ return factory.getCurrentSession(); } }

2 Hiernate 清单配制文件 详情

<?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> <!-- 1 基本4项 --> <!-- 1.1 加载驱动配制 --> <property>com.mysql.jdbc.Driver</property> <!-- 1.2 数据库地址 --> <!-- 如 jdbc:mysql://192.168.1.1:3306/test_java_study?useUnicode=true&amp;characterEncoding=UTF-8--> <property>url</property> <!-- 1.3 登录数据库用户名 --> <property>root</property> <!-- 1.3 登录数据库用户名密码 --> <property>123456</property> <!-- 2 方言 --> <property>org.hibernate.dialect.MySQL5Dialect</property> <!-- 3 开发时,优化设置 --> <!-- 3.1 显示生产sql语句 --> <property>true</property> <!-- 3.2 格式化方式显示sql --> <property>true</property> <!-- 4 表的创建 --> <property>update</property> <!-- 5 取消bean校验 --> <property>none</property> <!-- 6 将session绑定当本地线程中 * hibernate session 管理 : 只将使用。 * 当在cfg.xml 配置 thread,SessionFactory提供 getCurrentSession() 将可以使用。 * hibernate底层使用 ThreadLocal 线程局部变量,可以在一个线程中共享数据。 *** get() ##map.get(Thread) *** set(value) ##map.put(Thread,value) *** remove() ##map.remove(Thread) --> <property>thread</property> <!-- 整合c3p0 --> <property>org.hibernate.connection.C3P0ConnectionProvider</property> <!-- 对象类的 映射文件 --> <mapping resource="android/longs/study/home/servlet/model/MobleHomeModel.hbm.xml" /> </session-factory> </hibernate-configuration>

关于 第四项 表的创建中

取值可为 create : 每一次都将创建表,如果表已经存在将删除。(测试)程序结束之后,表存在的。 create-drop:每一次都将创建表,如果表已经存在将删除。(测试)程序结束之后,将删除表。 注意:必须执行 factory.close() 否则与“create”相同 update : 如果表不存在,将创建。如果存在,将维护对应关系(映射文件 - 表)【】 注意:只负责添加,但不进行删除。 validate : 运行时,将校验 映射文件 和 表 对应关系,如果一一对应程序正常运行,如果不对应抛异常。

二级缓存配制

<!-- 配置隔离级别 --> <property>4</property> <!-- 开启二级缓存 --> <property>true</property> <!-- 提供商 --> <property>org.hibernate.cache.EhCacheProvider</property> <!-- 开启查询缓存 --> <property>true</property> <!-- 二级缓存监测 --> <property>true</property> <!-- 类缓存 --> <!-- com包下的Customer类 --> <class-cache usage="read-write"/> <!-- com包下的Order包 --> <class-cache usage="read-write"/> <!-- 集合缓存 --> <!-- com包下的Customer类中的orderSet集合 --> <collection-cache usage="read-write" collection="com.Customer.orderSet"/>

注意 

一级缓存缓存的是对象 

二级缓存缓存的是数据 

二级缓存中集合缓存中的对象未进行类缓存的话,将会执行OID查询

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzjgwx.html