我在使用spring session factory在hibernate上获取anonymus内部类的会话时遇到问题.
这是代码:
public class DomainDaoImpl extends BasicDaoImpl
问题是org.hibernate.HibernateException:找不到当前线程的Session
这通常发生在DAO方法不在事务中时.
那么如何让它与内部类一起工作呢?
最佳答案
我认为在内部类级别定义@Transactional(readOnly = true),spring将无法检测并应用事务方面.所以它肯定不会起作用.
原文链接:https://www.f2er.com/spring/432304.html但我认为如果你写下面的东西可能不是100%肯定(我怀疑一旦你调用迭代器方法事务关闭)
@Override
@Transactional(readOnly = true)
public Iterator
另一个选项可以让调用者负责事务或写入itperor()的包装器方法,如getAllDomain(),并将事务应用于该方法.
may be you can do some patch in getCurrentSession() like
getCurrentSession() from sessionFactory if not available then use
openSession(),ofcourse you have to close it manually if new session
opened.