本文介绍了sessionfactory.openSession()和sessionfactory.openStatelessSession()之间的区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道上面提到的休眠类sessionfactory类的两个方法之间的概念上的区别,如果用简单的例子来说明的话。 前者打开一个正常的(有状态的)会话,而后者打开一个无状态的会话。
根据,无状态会话是:
I want to know the conceptual difference between the above mentioned two methods of the hibernates sessionfactory class if poosible with simple example.
解决方案
The former opens a normal (stateful) session, while the latter (probably not surprisingly) a stateless session.
According to the Javadoc, a stateless session is:
这篇关于sessionfactory.openSession()和sessionfactory.openStatelessSession()之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!