您的位置:首页 > 运维架构

Hibernate SessionFactory openSession vs getCurrentSession vs openStatelessSession

2014-09-23 10:35 656 查看
Hibernate SessionFactory is the factory class through which we get sessions and perform database operations. Hibernate SessionFactory provides three methods through which we can get Session object –
getCurrentSession()
,
openSession()
and
openStatelessSession()
.

Hibernate getCurrentSession

Hibernate
SessionFactory
getCurrentSession() method returns the session bound to the context. But for this to work, we need to configure it in hibernate configuration file like below.

If its not configured to thread, then we will get below exception.

Since this session object belongs to the hibernate context, we don’t need to close it. Once the session factory is closed, this session object gets closed. Hibernate Session objects are not thread safe, so we should not use it in multi-threaded environment.
We can use it in single threaded environment because it’s relatively faster than opening a new session.

Hibernate openSession

Hibernate
SessionFactory
openStatelessSession() method returns instance of
StatelessSession
. There is another overloaded method where we can pass
java.sql.Connection
object to get a stateless session object from hibernate.

StatelessSession does not implement first-level cache and it doesn’t interact with any second-level cache. Since it’s stateless, it doesn’t implement transactional write-behind or automatic dirty checking or do cascading operations to associated entities.

Collections are also ignored by a stateless session. Operations performed via a stateless session bypass Hibernate’s event model and interceptors. It’s more like a normal JDBC connection and doesn’t provide any benefits that come from using hibernate framework.

However, stateless session can be a good fit in certain situations, for example where we are loading bulk data into database and we don’t want hibernate session to hold huge data in first-level cache memory.

A simple program showing these methods usage is given below.

HibernateSessionExample.java

That’s all for different session factory methods that we can use to obtain session object.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  hibernate jdbc spring
相关文章推荐