...
|
...
|
@@ -88,12 +88,11 @@ public class DataSourceConfig { |
|
|
|
|
|
/*
|
|
|
* 定期检测连接是否有效
|
|
|
* 解决客户端长时间没有请求,连接被服务器断开的问题
|
|
|
*/
|
|
|
boolean testWhileIdle = true;
|
|
|
//解决客户端长时间没有请求,连接被服务器断开的问题
|
|
|
boolean testOnBorrow = true;
|
|
|
boolean testOnReturn = true;
|
|
|
boolean testOnBorrow = false;
|
|
|
boolean testOnReturn = false;
|
|
|
String validationQuery = "select 1";
|
|
|
|
|
|
//每10秒检查一次
|
...
|
...
|
|