gpt4 book ai didi

java - Hibernate 4 默认事务超时值

转载 作者:行者123 更新时间:2023-11-30 22:54:32 25 4
gpt4 key购买 nike

我收到这个错误:

2014-11-14 17:39:44 [WARN]SqlExceptionHelper:143    SQL Error: 0, SQLState: 08S01
2014-11-14 17:39:44 [ERROR]SqlExceptionHelper:144 Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
2014-11-14 17:39:44 [ERROR]BackupService:245 org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exception is org.hibernate.exception.JDBCConnectionException: Could not open connection

似乎 Hibernate 对我的工作有一个小的事务超时,但我找不到默认的超时值是多少。我也没有在 hibernate 文档中找到它,我找到了如何更改它,但没有找到默认值。

这是我的 hibernate 配置:

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan">
<list>
<value>com.test.db.entity</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
<prop key="hibernate.show_sql">false</prop>
<prop key="hibernate.bytecode.use_reflection_optimizer">false</prop>
<prop key="hibernate.cglib.use_reflection_optimizer">true</prop>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.search.autoregister_listeners">false</prop>
<prop key="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</prop>
</props>
</property>
</bean>

您知道使用此配置的 hibernate 事务的默认超时值是多少吗?

最佳答案

我遇到了同样的异常。我用谷歌搜索,发现你的问题没有答案:)

我在 Weblogic 控制台上的“mydomain->Configuration->JTA”上将“Timeout Seconds:”从 300 更改为 1000(可能会增加更多,这取决于您的事务超时),或者在您的应用程序服务器上增加 JTA 超时。

然后,对于 hibernate.cfg.xml,您可以检查这个答案:Hibernate/MySQL Connection Timeout

它有效。

关于java - Hibernate 4 默认事务超时值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26990090/

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