Hibernate(三): org.hibernate.HibernateException: No CurrentSessionContext configured!

Hibernate版本5.2.9

获取Session的方式是sessionFactory.getCurrentSession();

比较老一些的版本使用的是sessionFactory.openSession()是不管任何情况都重新开启一个Session。

从两者却别来说getCurrentSession();相对的增加了一个判断,在有Session的情况下就会直接去调用,没有session的话才会创建。比openSession()要好一点。

但是,目前却遇到了问题:

四月 15, 2017 1:38:33 下午 org.hibernate.tool.schema.internal.SchemaCreatorImpl applyImportSources
INFO: HHH000476: Executing import script ‘org.hiber[email protected]4ebea12c‘
Exception in thread "main" org.hibernate.HibernateException: No CurrentSessionContext configured!
    at org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:454)
    at com.dx.hibernate5.test.HelloWord.main(HelloWord.java:43)

网上搜索了一下,找到了解决问题的方案:

1、如果是Hibernate集成了JBoss的情况下,需要在*.cfg.xml配置文件中新增配置:

<property name="hibernate.current_session_context_class">jta</property>

2、如果是不继承的话,需要在*.cfg.xml配置文件中新增配置:

<property name="hibernate.current_session_context_class">thread</property>

经调试,问题解决了。

时间: 2024-10-05 18:21:42

Hibernate(三): org.hibernate.HibernateException: No CurrentSessionContext configured!的相关文章

hibernate异常org.hibernate.HibernateException: No CurrentSessionContext configured!

hibernate.cfg.xml中要配置 <property name="current_session_context_class">thread</property>

org.hibernate.HibernateException: No CurrentSessionContext configured!

hibernate可以通过两种方式获得Session: getCurrentSession() 和openSession(). 当通过getCurrentSession()方法时,需要在 hibernate.cfg.xml配置文件中添加: <property name="current_session_context_class">thread</property>

转 使用Hibernate操作数据库时报:No CurrentSessionContext configured! 异常

没有currentSession配置错误,即在我们使用currentSession的时候要在hibernate.cfg.xml中进行相关的事务配置:1.本地事务<property name="hibernate.current_session_context_class">thread</property>2.全局事务<property name="hibernate.current_session_context_class">

No CurrentSessionContext configured

今天编写hibernate程序碰到这个问题: Exception in thread "main" org.hibernate.HibernateException:No CurrentSessionContext configured! atorg.hibernate.impl.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:698) atcom.HibernateProxy.Interceptor.MyTra

hibernate报错:no currentsessioncontext configured!

使用hibernate框架时候报错:no currentsessioncontext configured! 这个错误是当我们使用getCurrentSession();时候引起的,原因是currentSession配置错误,与事务有关,当我们使用currentSession的时候需要在hibernate.cfg.xml中进行如下事务配置: 1.如果是本地事务: <property name="hibernate.current_session_context_class">

根据错误原理解决Hibernate运行出现No CurrentSessionContext configured!错误

(1)异常信息如下: 严重: Servlet.service() for servlet action threw exception java.lang.RuntimeException: <u>No CurrentSessionContext configured!</u> at com.lc.utils.HibernateUtil.executeQuery(HibernateUtil.java:56) at com.lc.service.UsersService.checkU

依据错误原理解决Hibernate执行出现No CurrentSessionContext configured!错误

(1)异常信息例如以下: 严重: Servlet.service() for servlet action threw exception java.lang.RuntimeException: <u>No CurrentSessionContext configured!</u> at com.lc.utils.HibernateUtil.executeQuery(HibernateUtil.java:56) at com.lc.service.UsersService.chec

Hibernate(三)结构-配置文件-实体映射及配置文件

一.体系结构 SessionFactory:属于单一数据库的编译过的映射文件的一个线程安全的,不可变的缓存快照.Session的工厂.有可能持有一个可选的数据缓存可以进程级别或者群级别保存可以在事务中重用数据. 会话,Session:单线程,生命期短促的对象,代表应用程序和持久化层之间的一次对话.封装了一个JDDBC连接,它也是Transaction的工厂,保存有必须持久化对象的缓存,用于遍历对象,或者通过标识符查找对象. 持久化对象(Persistent Object)及其集合(Collect

Hibernate 入门 04 - Hibernate中Java对象的三种状态

目录:(后续不断更新...) Hibernate 入门 01 - 框架技术 (介绍Hibernate框架的发展由来) Hibernate 入门 02 - Hibernate介绍及其环境搭建 Hibernate 入门 03 - 使用Hibernate完成持久化操作 Hibernate 入门 04 - Hibernate中Java对象的三种状态 ▁▃▅ Hibernate中Java对象的三种状态▅▃▁ 1. Java对象的三种状态 当应用通过调用Hibernate API与框架发生交互时,需要从持久