下面是小弟学习Hibernate 的一些体会:
package
com.wosdman.test;
import
org.hibernate.HibernateException;
import
org.hibernate.Session;
import
org.hibernate.cfg.Configuration;
/**
* Configures and provides access to Hibernate
sessions, tied to the
* current thread of execution.
Follows the Thread Local Session
* pattern, see {@link
http://hibernate.org/42.html }.
*/
public class
HibernateSessionFactory {
/**
* Location of hibernate.cfg.xml file.
* Location should be on the classpath as
Hibernate uses
* #resourceAsStream style lookup for its
configuration file.
* The default classpath location of the
hibernate config file is
* in the default package. Use
#setConfigFile() to update
* the location of the configuration file
for the current session.
*/
private static String CONFIG_FILE_LOCATION =
"/hibernate.cfg.xml";
private static final
ThreadLocal<Session> threadLocal = new ThreadLocal<Session>();
private
static Configuration configuration = new Configuration();
private static org.hibernate.SessionFactory
sessionFactory;
private static String configFile =
CONFIG_FILE_LOCATION;
static {
try
{
configuration.configure(configFile);
sessionFactory =
configuration.buildSessionFactory();
} catch (Exception e) {
System.err
.println("%%%%
Error Creating SessionFactory %%%%");
e.printStackTrace();
}
}
private HibernateSessionFactory() {
}
/**
* Returns the ThreadLocal Session
instance.
Lazy initialize
* the
<code>SessionFactory</code> if needed.
*
*
@return Session
*
@throws HibernateException
*/
public static Session getSession() throws
HibernateException {
首选对
ThreadLocal
作一个简单的说明
:
它的出现是为更好的服务的多线程
,
使基多线程的应用程序更加完美
.
如果有这样一种需要
:
每当我们开起一个新的线程
,
都需要访问一个变量
,
但这个变量可能会在其它的线程中被改变
,
这时
ThreadLocal
最有效来解这个问题
.
其实
ThreadLocal
并不是一个
Thread
而是一个
Thread local var ,
我觉得应该访问的是本地的私有的静态的
(private static)
变量
,
但下面的这个应用不是的
,session
并不是
private static
的
Session session = (Session)
threadLocal.get();
当每一次调用时
,session
为
null
if (session == null || !session.isOpen())
{
if (sessionFactory == null)
{
//
似乎没有必要
,
因为在前面的
static
代码块中就对它
sessionfactory
初始化了
rebuildSessionFactory();
//
多重判断后来构建一个
sessionfactory,
其实是再次调用
configruation
的
buildsessionfactory() method
完成的
}
session = (sessionFactory
!= null) ? sessionFactory.openSession()
: null;
//
经过上面的判断以后
,
其实我觉得
sessionfactory
不可能为
null,
为了安全起见
,
与程序的逻辑性,这样写真有必要的
,
来构建一个
session
对象
threadLocal.set(session);
//
把这个
session
对象装入
threadlocal
中,其实它是放入一个
Map
中,你可以查看
ThreadLocal
原代码。
}
return session;
}
/**
*
Rebuild hibernate session factory
*
*/
public static
void rebuildSessionFactory() {
try {
configuration.configure(configFile);
sessionFactory =
configuration.buildSessionFactory();
} catch (Exception e) {
System.err
.println("%%%%
Error Creating SessionFactory %%%%");
e.printStackTrace();
}
}
/**
*
Close the single hibernate session instance.
*
*
@throws HibernateException
*/
public static void closeSession() throws
HibernateException {
Session session = (Session)
threadLocal.get();
//
因为
session
只是方法局部变量,在
threadlocal
中有
session
,所以只能通过
threadlocal.get()
方法来获得
threadLocal.set(null);
if (session != null) {
session.close();
}
}
/**
*
return session factory
*
*/
public static
org.hibernate.SessionFactory getSessionFactory() {
return sessionFactory;
}
/**
*
return session factory
*
*
session
factory will be rebuilded in the next call
*/
public static
void setConfigFile(String configFile) {
HibernateSessionFactory.configFile
= configFile;
sessionFactory = null;
}
/**
*
return hibernate configuration
*
*/
public static Configuration
getConfiguration() {
return configuration;
}
}
分享到:
相关推荐
hiberante3 注解帮助文档hiberante3 注解帮助文档hiberante3 注解帮助文档hiberante3 注解帮助文档hiberante3 注解帮助文档
通过以上分析可以看出,Hibernate 不仅是一个强大的数据持久化框架,还是学习和掌握 Java 应用程序开发不可或缺的一部分。对于希望深入学习 Hibernate 的开发者来说,从基本概念到高级特性都需要有一个全面的了解。
最新springboot2基础hiberante5完整项目,打包jar,运行jsp,包括后台与前台,拦截器,登录,后台下载就可以使用,注意不是jpa,里面有完整Dao,千万级数据项目分离的代码,为了适合老项目开发特意集成hiberante5....
《深入理解Hibernate源码与配置》 Hibernate,作为一款强大的对象关系映射(ORM)框架,深受Java开发者喜爱。本文将结合"hibernate源码"和"hibernate配置...深入学习Hibernate,将使你在Java持久化领域更加游刃有余。
在Java的持久化框架中,Hibernate是一个非常流行的ORM(对象关系映射)工具,它允许开发者将数据库操作转化为对Java对象的操作。DAO(Data Access Object)层是软件设计模式中的一个重要概念,主要用于处理数据访问...
Hibernate Tools是一套全新而且完整的面向Hibernate3的工具集合,它包含了Eclipse插件和Ant编译流程。Hibernate Tools是JBoss Tools的核心组件,所以他也是JBoss Developer Studio的一部分
Spring 框架是 Java 企业级应用开发中的核心组件,它提供了全面的软件基础设施,包括依赖注入(DI)、面向切面编程(AOP)以及众多的模块如数据访问、Web 应用、任务调度等。Spring MVC 是 Spring 框架的一部分,...
《Hibernate3.jar与API详解》 Hibernate,作为一个强大的对象关系映射(ORM)框架,是Java开发者在处理数据库操作时的得力助手。本篇将深入探讨Hibernate3.jar及其API,帮助开发者更好地理解和运用这个库。...
**hibernate5.0.7安装jar包详解** Hibernate是一个强大的Java持久化框架,它为开发者提供了在Java应用程序中管理关系数据库模型的工具。在5.0.7版本中,Hibernate引入了一系列改进和增强,使得它在处理数据库操作时...
开发工具:MyEclipse 6....Struts+Spring+Hiberante框架整合的简单登录系统 无需配置任何文件、只需在mysql中创建一个空数据库 如:create database test; 注:mysql数据库用户名:root 密码:root
hiberante4.2.3-part2
### Hibernate中的五大核心接口 #### 一、概述 在Hibernate框架中,存在五大核心接口,它们分别是:`Session`、`...在未来的学习和实践中,深入理解这些接口的工作原理将有助于更好地利用Hibernate的强大功能。
**标题与描述解析** 标题“Hiberante3相关文档”表明了主要讨论的是关于Hibernate3这一持久化框架的资料集合,可能涵盖了多个方面,如...通过深入学习这些文档,开发者可以更好地掌握Hibernate,提升应用程序的性能。
这个小项目使用jsf+richfaces+hiberante设计,作为学习jsf和hibernate的新手学习参考.里面由基本上有常规项目所需一般功能:比如ajax.分页.hibernate级联操作等等
hiberante-4.2.3-part3
Spring MVC 和 Hibernate 是两个在Java Web开发中广泛使用的框架,它们分别是用于构建MVC(Model-View-Controller)架构的Web应用和管理数据库操作的对象关系映射(ORM)工具。在实际项目中,这两个框架的集成能提供...
hiberante-4.2.3-part4
在Java世界中,Hibernate是一个非常流行的ORM(对象关系映射)框架,它允许开发者使用面向对象的方式来操作数据库,而无需关心底层SQL语句的编写。本文将深入探讨Hibernate的四种主要查询方式:HQL(Hibernate Query...
hiberante 代码save方法过程,分析
hiberante3.2纯静源码