Spring与Hibernate集成中的session问题
1.通过getSession()方法获得session进行操作
Java代码
publicclassTestextendsHibernateDaoSupport{
publicvoidsave(Useruser){
this.getSession().save(user);
}
}利用这种方式获得的session在方法执行结束之后不会自动关闭连接,也就是说我们必须通过session.close()或者releaseSession(session)来手动进行关闭,否则会造成内存泄露或者连接耗尽等问题。手动关闭:
Java代码
publicclassTestextendsHibernateDaoSupport{
publicvoidsave(Useruser){
Sessionsession=this.getSession();
session.save(user);
session.close();
//releaseSession(session);
}
}如果对上述方法进行事务控制,那么spring框架会自动为我们关闭session,此种情况下再执行上述代码,会抛出如下异常:
Java代码
org.springframework.orm.hibernate3.HibernateSystemException:Sessionisclosed;nestedexceptionisorg.hibernate.SessionException:Sessionisclosed
…
org.hibernate.SessionException: Session is closed提示session已经关闭。但是如果在代码中通过releaseSession(session)的方法来关闭session,则不会抛出异常。releaseSession(session)方法的代码如下:
Java代码
protectedfinalvoidreleaseSession(Sessionsession){
SessionFactoryUtils.releaseSession(session,getSessionFactory());
}也就是说它是通过SessionFactoryUtils的releaseSession方法来实现的:
Java代码
publicstaticvoidreleaseSession(
Sessionsession,SessionFactorysessionFactory){
if(session==null){
return;
}
//Onlyclosenon-transactionalSessions.
if(!isSessionTransactional(session,sessionFactory)){
closeSessionOrRegisterDeferredClose(session,sessionFactory);
}
}可见它内部会先进行判断。
查看getSession()方法的源码:
Java代码
protectedfinalSessiongetSession()
throwsDataAccessResourceFailureException,IllegalStateException{
returngetSession(this.hibernateTemplate.isAllowCreate());
}getSession()方法内部通过它的一个重载方法getSession(boolean allowCreate )来实现,变量allowCreate是HibernateTemplate中的变量,默认值为true,也就是创建一个新的session。如果我们调用getSession(false)来获得session,那么必须对其进行事务控制,原因是:(spring文档)
Java代码
protectedfinalorg.hibernate.SessiongetSession()
throwsDataAccessResourceFailureException,IllegalStateException
Get a Hibernate Session, either from the current transaction or a new one. The latter is only allowed if the "allowCreate" setting of this bean's HibernateTemplate is true.也就是说,getSession()方法从当前事务或者一个新的事务中获得session,如果想从一个新的事务中获得session(也就意味着当其不存在事务控制),则必须使HibernateTemplate中的allowCreate变量的值为”true”,而现在设置allowCreate变量的值为”false”就意味着无法从新的事务中获得session,也就是只能从当前事务中获取,所以必须对当前方法进行事务控制,否则会抛出如下异常:
Java代码
java.lang.IllegalStateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here ...同时,如果对getSession()所在的方法进行事务控制,那么类似如下的代码:
Java代码
Sessionsession=null;
for(intm=0;m<5;m++){
Adminadmin=newAdmin();
admin.setName("test");
admin.setPassword("098");
session=this.getSession();
session.save(admin);
}只会打开一个session,因为事务控制必须确保是同一个连接,spring会确保在整个相关方法中只存在一个session。Spring在方法开始时会打开一个session(即使进行事务控制的方法内部不执行数据库操作),之后在请求session时,如果在事务中存在一个未commit的session就返回,以此确保同一个session。
2.getCurrentSession()与openSession()
getCurrentSession()与openSession()方法通过Hibernate的SessionFactory获得,两者的区别网上有很多文章已经介绍过,即:
Java代码
①getCurrentSession创建的session会和绑定到当前线程,而openSession不会。
②getCurrentSession创建的线程会在事务回滚或事物提交后自动关闭,而openSession必须手动关闭对于getCurrentSession()方法:
(1)其所在方法必须进行事务控制
(2)Session在第一次被使用的时候,或者第一次调用getCurrentSession()的时候,其生命周期就开始。然后它被Hibernate绑定到当前线程。当事务结束的时候,不管是提交还是回滚,Hibernate也会把Session从当前线程剥离,并且关闭它。假若你再次调用getCurrentSession(),你会得到一个新的Session,并且开始一个新的工作单元。
对于openSession()方法:
这个方法一般在spring与Hibernate的集成中不直接使用,它就是打开一个session,并且这个session与上下文无关,如果对其所在方法进行事务控制,会发现不起作用,原因就是前面提到的,事务控制必须确保是同一个连接,而openSession()打开的session与上下文无关。这个方法与getSession(),getCurrentSession()以及getHibernateTemplate()等方法的区别在于:后面的几个方法spring可以对其进行控制,如果对它们所在的方法进行事务控制,spring可以确保是同一个连接,而openSession()方法,spring无法对其进行控制,所以事务也不会起作用。3.OpenSessionInView
OpenSessionInView的主要功能是用来把一个HibernateSession和一次完整的请求过程对应的线程相绑定。OpenSessionInView在request把session绑定到当前thread期间一直保持hibernatesession在open状态,使session在request的整个期间都可以使用,如在View层里PO也可以lazyloading数据,如${company.employees}。当View层逻辑完成后,才会通过Filter的doFilter方法或Interceptor的postHandle方法自动关闭session。
Java代码
publicclassGroupimplementsSerializable{
privateintid;
privateStringname;
privateSetusers;
...
}在业务方法中加载Group对象并将其保存到HttpSession对象中
Java代码
Listgroups=ht.find("fromGroup");
Groupgroup=(Group)groups.get(0);
HttpSessionsession=ServletActionContext.getRequest().getSession();
session.setAttribute("group", group);注意Group采用默认的延迟加载机制,即此时返回的只是一个Group代理对象, 在jsp页面中显示group对象的users属性,如下:
Java代码
<%
Groupgroup=(Group)session.getAttribute("group");
out.println(group.getUsers());
%>此时会抛出如下异常:
Java代码
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: entity.Group.users, no session or session was closed延迟加载机制使得在业务方法执行结束之后仅仅返回Group的一个代理对象,在jsp页面中使用到group对象的值时,才发出sql语句加载,但此时session已经关闭。解决方法是采用OpenSessionInView机制,在web.xml页面中配置如下过滤器:
Java代码
<filter>
<filter-name>hibernateFilter</filter-name>
<filter-class>
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
</filter-class>
</filter>