- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在Hibernate4中,Spring4
我想使用没有sessionFactory.getCurrentSession()
批注的@Transactional
。有什么办法吗?
最佳答案
简单的答案是:是,您当然可以,因为SessionFactory.getCurrentSession()
只是接口(interface)的一种方法,因此您可以编写自己的实现类,该类可以为您提供所需的任何Session
。
但是,这可能不是您要查找的答案。
我们一直在问自己一个类似的问题:为什么在将Hibernate与Spring的事务管理一起使用时,为什么必须将@Transactional
添加到我们的所有方法中,甚至那些仅包含SELECT
数据并因此不需要在a上下文中执行的方法呢?数据库事务?
答案不是那么简单,但让我们看一下其中涉及的一些管道,看看是否可以理解。
首先,正如SO其他地方所提到的,Session
的思想从根本上与事务的思想联系在一起。 javadoc中有一个关于Session
接口(interface)的提示:
The lifecycle of a Session is bounded by the beginning and end of a logical transaction. (Long transactions might span several database transactions.)
@Transactional
类的javadoc确认其目的是指示何时应在“事务上下文”中执行代码,而该事务上下文不一定是数据库事务的上下文。
@Transactional
批注允许您设置属性
readOnly=true
,但稍后会进行更多说明。
sessionFactory.getCurrentSession()
时,它实际上在
SessionFactoryImpl
中执行以下代码:
public Session getCurrentSession() throws HibernateException {
if ( currentSessionContext == null ) {
throw new HibernateException( "No CurrentSessionContext configured!" );
}
return currentSessionContext.currentSession();
}
CurrentSessionContext
类处理的
SpringSessionContext
实现的(除非您使用的是JTA,并且您可能不想打开Pandora的盒子):
@Override
public Session currentSession() throws HibernateException {
Object value = TransactionSynchronizationManager.getResource(this.sessionFactory);
if (value instanceof Session) {
return (Session) value;
}
else if (value instanceof SessionHolder) {
SessionHolder sessionHolder = (SessionHolder) value;
Session session = sessionHolder.getSession();
if (!sessionHolder.isSynchronizedWithTransaction() &&
TransactionSynchronizationManager.isSynchronizationActive()) {
TransactionSynchronizationManager.registerSynchronization(
new SpringSessionSynchronization(sessionHolder, this.sessionFactory, false));
sessionHolder.setSynchronizedWithTransaction(true);
// Switch to FlushMode.AUTO, as we have to assume a thread-bound Session
// with FlushMode.MANUAL, which needs to allow flushing within the transaction.
FlushMode flushMode = session.getFlushMode();
if (flushMode.equals(FlushMode.MANUAL) &&
!TransactionSynchronizationManager.isCurrentTransactionReadOnly()) {
session.setFlushMode(FlushMode.AUTO);
sessionHolder.setPreviousFlushMode(flushMode);
}
}
return session;
}
if (this.transactionManager != null) {
try {
if (this.transactionManager.getStatus() == Status.STATUS_ACTIVE) {
Session session = this.jtaSessionContext.currentSession();
if (TransactionSynchronizationManager.isSynchronizationActive()) {
TransactionSynchronizationManager.registerSynchronization(new SpringFlushSynchronization(session));
}
return session;
}
}
catch (SystemException ex) {
throw new HibernateException("JTA TransactionManager found but status check failed", ex);
}
}
if (TransactionSynchronizationManager.isSynchronizationActive()) {
Session session = this.sessionFactory.openSession();
if (TransactionSynchronizationManager.isCurrentTransactionReadOnly()) {
session.setFlushMode(FlushMode.MANUAL);
}
SessionHolder sessionHolder = new SessionHolder(session);
TransactionSynchronizationManager.registerSynchronization(
new SpringSessionSynchronization(sessionHolder, this.sessionFactory, true));
TransactionSynchronizationManager.bindResource(this.sessionFactory, sessionHolder);
sessionHolder.setSynchronizedWithTransaction(true);
return session;
}
else {
throw new HibernateException("Could not obtain transaction-synchronized Session for current thread");
}
}
Could not obtain transaction-synchronized Session for current thread
sessionFactory.getCurrentSession()
注释的方法中调用
@Transactional
时,因为
TransactionSynchronizationManager.isSynchronizationActive()
返回
false
,因为没有
@Transactional
注释,切入点未执行,这将创建一个同步事务。 (有关更多信息,请参见
org.springframework.transaction.interceptor.TransactionInterceptor
。)
PlatformTransactionManager
时,我们不需要调用
SELECT
及其数据库事务代码的开销。实现此目的的简单方法是不调用
sessionFactory.getCurrentSession()
,而是显式打开
Session
。例如,使用以下Spring托管代码:
public class MyHibernateService {
@Autowired
private SessionFactory sessionFactory;
protected Session transactionalSession() {
return sessionFactory.getCurrentSession();
}
protected Session readOnlySession() {
if(TransactionSynchronizationManager.isSynchronizationActive())
return transactionalSession();
Session session = this.sessionFactory.openSession();
session.setFlushMode(FlushMode.MANUAL);
return session;
}
public List<SalixUrl> activeUrls() {
return readOnlySession().createCriteria(SalixUrl.class)
.add(Restrictions.gt("published", LocalDateTime.now()))
.add(Restrictions.lt("removed", LocalDateTime.now()))
.list();
}
@Transactional
public List<SalixUrl> refreshUrls() {
List<SalixUrl> urls = activeUrls();
for(SalixUrl url : urls) {
url.setLastChecked(LocalDateTime.now());
transactionalSession().update(url);
}
}
}
myHibernateService.activeUrls()
批注的情况下调用
@Transactional
,但也可以使用
myHibernateService.refreshUrls()
进行调用的
PlatformTransactionManager
。
OpenSessionInViewFilter
(或拦截器)的源代码,后者通常用于缓解
LazyLoadingException
,并且在程序员认为自己是通过使用
FetchType.LAZY
定义实体关系来优化他们的ORM模型,但是还没有对他们的服务/存储库层进行编码以实际获取要生成的View需要获取的内容。
@Transactional
批注,并让Spring和Hibernate框架决定实际需要哪种类型的数据库事务。
@Transactional(readOnly=true)
,但请注意,这不一定是个好主意。我不主张使用javax
@Transactional
,因为它更通用-如果您将颜色绑定(bind)到Spring桅杆上,则最好使用它提供的功能。相反,我很警惕,因为它所做的(对于当前的实现)是请求将来自基础数据库提供程序的
Connection
对象标记为只读。出于两个原因,这可能会带来问题。
SELECT
,但我想几年前我读过一些东西)。
SessionFactory
。 JPA 2和
EntityManager
的设计是使
SessionFactory
的明确使用变得不必要。甚至几年前,伊曼纽尔·伯纳德(Hibernate的另一位作者)都给了我们以下建议:
http://www.theserverside.com/news/2240186700/The-JPA-20-EntityManager-vs-the-Hibernate-Session-Which-one-to-use
SessionFactory
和Hibernate Criteria API及其附带的所有内容。因此,我将继续使用它,直到他们从Spring框架中弃用对它的支持为止。因为,正如我已经说过的,如果您将颜色钉在框架桅杆上,那么您也可以使用框架必须提供的所有功能。实际上,抽象的主要好处(可以交换基础的ORM或数据库提供程序)是您可能永远不必担心的。
@Transactional(readOnly=true)
优化查询,却不了解MSSQL实际上不支持它,并且在使用PostgreSQL和C3P0时会中断。是的,我对此仍然很痛苦。)
关于java - 没有@Transactional的Hibernate sessionFactory.getCurrentSession(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29690240/
堆栈跟踪: java.lang.NullPointerException at de.mail.HibernateUtil.getSession(HibernateUtil.java:30) at d
我正在尝试将 Hibernate 4.1 与 Spring 3.1.3 集成。 //configuration file (beans.xml) org.
我是 spring 和 hibernate 的新手,一切正常,但我检查了每次调用 getCurrentSession 时,在 mysql 中创建了一个新的连接线程,该线程进入休眠状态。据我所知,这不是
我需要了解使用 Hibernate.getCurrentSession() 的最佳情况? 我的理解是,它在像 WebApplication(Spring MVC)这样的多线程环境中是有害的,因为在任何
我正在尝试利用 Hibernate,并尝试通过利用 API SessionFactory 提供的 getCurrentSession() 来避免 session 管理。据我了解,这将为我管理 sess
我正在尝试使用 generic-dao ( http://code.google.com/p/hibernate-generic-dao/ )。但是,在我的 HibernateBaseDAO 中,ge
通过 SessionFactory.getCurrentSession() 获取 Hibernate session 是否线程安全?假设我有一个 static SessionFactory 对象用于我
我正在使用 hibernate 和 jsp/servlet 编写一个基于 Web 的应用程序。我已经阅读了 sessionFactory.getCurrentSession 和 sessionFact
我有一个问题,当我在 DAO 文件中调用 addCus() 方法时,我得到 NullPointerException。我尝试了很多解决方案,但仍然出现此错误。为什么 getCurrentSession
在Hibernate4中,Spring4 我想使用没有sessionFactory.getCurrentSession()批注的@Transactional。有什么办法吗? 最佳答案 简单的答案是:是
我正在使用 Maven、Spring 和 Hibernate 做一个基于 Web 的项目。我刚刚遇到了一个问题。问题是每当我使用 sessionFactory.getCurrentSession()
这个问题已经有答案了: What is a NullPointerException, and how do I fix it? (12 个回答) 已关闭 6 年前。 当我将文件作为 JUnit 测试
我正在单元测试中全面测试一个实体,到目前为止几乎一切正常:创建、更新、列表。但是,当我尝试删除一条记录时,它并没有被删除。这是我正在使用的代码: public void delete (Integ
我有一个简单的 Java Web 应用程序,它从数据库接收一些信息并在 Web 浏览器中显示该信息。 Hibernate 用于与 servlet 和 jsp 文件中的数据库进行交互。一切都如我所愿,但
这个问题在这里已经有了答案: Hibernate openSession() vs getCurrentSession() (5 个答案) 关闭 6 年前。 OpenSession() 总是打开一个
您好,我已经使用 hibernate 配置了带有事务管理器的 sessionFactory 和 MysqL 数据源。当我尝试在 openSession() 之后立即对该工厂调用 getCurrentS
这是我的代码: hibernate .cfg.xml com.mysql.jdbc.Driver jdbc:mysql://localhost:3306
我是 N hibernate 的新手。我在我的应用程序中使用 n hibernate 。我编写的代码运行成功但有点慢,因为当我检查 hibernate 分析器时,它向我展示了进程缓慢的一些原因。“每个
Servlet 3.0 异步 API 的内部指定 Servlet 由线程多路复用器池处理。 getCurrentSession 的行为是什么?它会让 session 保持打开状态,直到多路复用器线程因
因此,我在事务内部使用 Hibernate SessionFactory 及其 getCurrentSession 方法已经有一段时间了。 Session session = sessionFacto
我是一名优秀的程序员,十分优秀!