ssh报错No operations allowed after connection closed.Connection was implicitly clos
Posted qianzf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssh报错No operations allowed after connection closed.Connection was implicitly clos相关的知识,希望对你有一定的参考价值。
### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed.
网上查了下,由于使用了默认配置,空闲超过8小时,自动断开该连接
我使用的是mybatis的默认连接池,于是把该配的,都配置上。datasource的属性,可参考mybatis官方文档
<environment id="env_stg">
<transactionManager type="JDBC" />
<dataSource type="POOLED">
<property name="driver" value="${driver}" />
<property name="url" value="${url_stg}" />
<property name="username" value="${username}" />
<property name="password" value="${password}" />
<property name="poolMaximumActiveConnections" value="20"/>
<property name="poolMaximumIdleConnections" value="5"/>
<!-- MySQLNonTransientConnectionException: No operations allowed after connection closed -->
<property name="poolPingQuery" value="select 1"/>
<property name="poolPingEnabled" value="true"/>
<!-- 对于空闲的连接一个小时检查一次 -->
<property name="poolPingConnectionsNotUsedFor" value="3600000"/>
</dataSource>
</environment>
以上是关于ssh报错No operations allowed after connection closed.Connection was implicitly clos的主要内容,如果未能解决你的问题,请参考以下文章
myBatis连接MySQL报异常:No operations allowed after connection closed.Connection was implicitly closed(示例代
mysql数据库连接不定时报错,no operations allowed...
MySQLNonTransientConnectionException: No operations allowed after statement closed hibernate
MySQL:No operations allowed after connection closed错误原因及解决
db2报错 Operation not allowed for reason
Cause: java.sql.SQLException: No operations allowed after statement closed.