gpt4 book ai didi

java - Hibernate事务异常: nested transactions not supported

转载 作者:行者123 更新时间:2023-12-01 11:22:31 24 4
gpt4 key购买 nike

我遇到以下异常:

2015-06-23 12:34:30.015 ERROR findRequest:224  - get failed
org.hibernate.TransactionException: nested transactions not supported
at org.hibernate.engine.transaction.spi.AbstractTransactionImpl.begin(AbstractTransactionImpl.java:154)
at org.hibernate.internal.SessionImpl.beginTransaction(SessionImpl.java:1435)
at sun.reflect.GeneratedMethodAccessor127.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.hibernate.context.internal.ThreadLocalSessionContext$TransactionProtectionWrapper.invoke(ThreadLocalSessionContext.java:356)
at com.sun.proxy.$Proxy5.beginTransaction(Unknown Source)

显示此异常的方法是:

public List findRequest() {

try {
Transaction trans=sessionFactory.getCurrentSession().beginTransaction();
Query q = sessionFactory.getCurrentSession().createQuery("query");
q.setString("reqStatus", reqStatus);
List result = q.list();
trans.commit();
return result;
} catch (RuntimeException re) {
LOGGER.error("get failed", re);
}
return null;
}

我在负载测试时遇到这个问题。我最近还添加了一些功能,其中 Web 服务调用数量增加。我还创建了一个维护线程,它继续调用数据库。所以重点是数据库调用次数增加了 20 倍。

我正在使用 PostgreSQL。这也是我的 hibernate 设置:

<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.password">******</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/******</property>
<property name="hibernate.connection.username">******</property>
<property name="hibernate.default_schema">******</property>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.search.autoregister_listeners">false</property>
<property name="hibernate.show_sql">false</property>
<property name="hibernate.current_session_context_class">thread</property>
<property name="hibernate.enable_lazy_load_no_trans">true</property>

正如您从我的 Hibernate 设置中看到的,我正在使用默认的 Hibernate 连接池。我的连接是否已满,因此我的转换未释放或关闭。另外我没有使用回滚机制。另外 hibernate.current_session_context_class=thread ,因此每个休息调用都会创建新线程。显示此异常的方法是从 REST API 调用的第一个方法。那么对于一个线程来说,它如何抛出嵌套异常呢?提前致谢。

最佳答案

如果您之前的交易尚未回滚,则可能会出现此问题。现在,您应该重新启动服务器(Glassfish 或您使用的任何其他服务器)并重试。

为了避免将来出现这种情况,您可能需要在 catch block 中手动回滚它:

catch (RuntimeException re) {
trans.rollback();
LOGGER.error("get failed", re);
}

关于java - Hibernate事务异常: nested transactions not supported,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31070232/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com