如何使用Hibernate保存数据时处理数据库服务器故障?

时间:2013-01-21 08:42:55

标签: spring hibernate orm postgresql-8.4

我有一个使用PostgreSQL作为数据库的Web应用程序。

假设我正在尝试使用Hibernate保存()数据。现在就在保存数据之前,如果数据库服务器将关闭那么发生了什么?

Hibernate将重新尝试再次保存,或者我必须编写重试代码。

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

不,Hibernate不会重新尝试保存您的数据。 db失败将导致您的事务失败,并且所有更改都将被回滚 更糟糕的是,如果您没有正确配置连接池,则当db将再次运行时,您将无法重新建立连接。请查看this question以获取更多信息。我复制并粘贴了c3p0配置。

<c3p0-config>
<default-config>
<!-- Configuring Connection     Testing -->
<!-- property name="automaticTestTable">TEST_EMS_HIBERNATE_CONN</property -->
<property name="checkoutTimeout">0</property>
<property name="testConnectionOnCheckout">true</property>
<property name="testConnectionOnCheckin">false</property>
<property name="preferredTestQuery">SELECT 1 from dual</property>
<!-- Configuring Recovery From Database Outages -->
<property name="acquireRetryAttempts">0</property>
<property name="acquireRetryDelay">1000</property>
<property name="breakAfterAcquireFailure">false</property>
<!-- Configuring to     Debug and Workaround Broken     Client Apps     -->
<property name="unreturnedConnectionTimeout">1800</property>
<property name="debugUnreturnedConnectionStackTraces">true</property>
</default-config>