Hibernate中Session的小错误
0
{main} org.hibernate.HibernateException: No Session found for current thread
{main} at org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:97)
{main} at org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:941)
怎么没有打开session
呢?
原来我的事务是在biz
里面打开的,然而我直接通过WebApplicationContext
获取到DAO
的对象进行查询,所以没有打开session
。