Spring 3 DataSourceTransactionManager在获取MySQL事务时偶尔会超时

时间:2014-09-19 02:58:47

标签: java mysql spring transactions spring-transactions

简而言之,当我在几分钟未使用事务后尝试连接时,第一个事务设置失败。

当工作正常时,我的日志会显示以下简单事务:

DEBUG: org.springframework.transaction.annotation.AnnotationTransactionAttributeSource - Adding transactional method 'getRecord' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,timeout_30; ''
DEBUG: org.springframework.jdbc.datasource.DataSourceTransactionManager - Creating new transaction with name [com.example.services.Service.getRecord]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,timeout_30; ''
DEBUG: org.springframework.jdbc.datasource.DataSourceTransactionManager - Acquired Connection [jdbc:mysql://dev-db.example.com:3306/example, UserName=foo@1.2.3.4, MySQL Connector Java] for JDBC transaction
DEBUG: org.springframework.jdbc.datasource.DataSourceTransactionManager - Switching JDBC Connection [jdbc:mysql://dev-db.example.com:3306/example, UserName=foo@1.2.3.4, MySQL Connector Java] to manual commit

但是,如果我几分钟没有任何活动,我将收到此消息:

DEBUG: org.springframework.transaction.annotation.AnnotationTransactionAttributeSource - Adding transactional method 'getRecord' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,timeout_30; ''
DEBUG: org.springframework.jdbc.datasource.DataSourceTransactionManager - Creating new transaction with name [com.example.services.Service.getRecord]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,timeout_30; ''

到目前为止我的观察结果:

  • 似乎是基于不活动,但我在重新启动我的Tomcat后立即看到了这种行为,虽然没有其他任何东西击中数据库所以我认为它对网络元素(例如我的MySQL服务器)是不活动的。
  • 当我的应用程序启动时,它会从数据库中发出一些没有任何问题的非事务性请求,因此它似乎与事务有关。
  • @Transactional表示法中的timeout元素在这种情况下无效。它似乎最终耗尽,但需要15分钟(!)。
  • 当此事务请求忙于超时时,我可以成功发出后续请求。
  • 似乎不是一个饥饿的本地连接池。我在重新启动Tomcat之后就已经看到了这一点。

当它最终超时时(我提到了15分钟!)我得到以下内容:

DEBUG: org.springframework.jdbc.datasource.DataSourceTransactionManager - Acquired Connection [org.apache.commons.dbcp.PoolableConnection@3269c671] for JDBC transaction
DEBUG: org.springframework.jdbc.datasource.DataSourceTransactionManager - Switching JDBC Connection [connection is closed] to manual commit
DEBUG: org.springframework.jdbc.datasource.DataSourceUtils - Returning JDBC Connection to DataSource
DEBUG: org.springframework.jdbc.datasource.DataSourceUtils - Could not close JDBC Connection
ERROR: java.sql.SQLException: Already closed.
ERROR: org.springframework.transaction.CannotCreateTransactionException: Could not open JDBC Connection for transaction; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed.
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed.
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 1,312,604 milliseconds ago.  The last packet sent successfully to the server was 924,748 milliseconds ago.
Caused by: java.net.SocketException: Connection timed out

运行Spring 3.1.1,mysql 5.1.32,commons-dbcp 1.4和commons-pool 1.5.4。

有谁知道这是什么?

1 个答案:

答案 0 :(得分:0)

您的问题是MySQL服务器超时空闲JDBC连接。这与TransactionManager设置无关。

查看您的DataSource设置。它应测试连接检索的连接和/或验证池中的空闲连接。

在commons-dbcp中,您可以通过testOnBorrow和validationQuery属性设置连接检索测试。