淘先锋技术网
首页
1
2
3
4
5
6
7
org.hibernate.HibernateException: No CurrentSessionContext configured!
报这个错的时候session的创建应该是用getCurrentSession(),这个方法会在上下文中找有没有可以用的session,上下文的定义是在hibernate.cfg.xml中的<property name="current_session_context_class">thread</property>这个标签中配置的,加上这个配置就好了,常用的选项有jta和thread,jta主要用在分布式数据库的情况下管理事务。