Commit de0a0482 authored by Quxl's avatar Quxl

x

parent 5f479040
...@@ -59,7 +59,6 @@ public class SqlTestController { ...@@ -59,7 +59,6 @@ public class SqlTestController {
} else { } else {
throw new XRException("URL无法识别, 没有对应的驱动程序"); throw new XRException("URL无法识别, 没有对应的驱动程序");
} }
dataSource.setQueryTimeout(60);
dataSource.setUsername(username); dataSource.setUsername(username);
dataSource.setPassword(password); dataSource.setPassword(password);
dataSource.setUrl(jdbcUrl); dataSource.setUrl(jdbcUrl);
...@@ -74,10 +73,13 @@ public class SqlTestController { ...@@ -74,10 +73,13 @@ public class SqlTestController {
dataSource.setTestOnReturn(false); dataSource.setTestOnReturn(false);
dataSource.setPoolPreparedStatements(true); dataSource.setPoolPreparedStatements(true);
dataSource.setMaxPoolPreparedStatementPerConnectionSize(20); dataSource.setMaxPoolPreparedStatementPerConnectionSize(20);
dataSource.setQueryTimeout(10);
dataSource.init(); dataSource.init();
JdbcTemplate jdbcTemplate = new JdbcTemplate(); JdbcTemplate jdbcTemplate = new JdbcTemplate();
jdbcTemplate.setDataSource(dataSource); jdbcTemplate.setDataSource(dataSource);
jdbcTemplate.setQueryTimeout(60);
List<Object> argList = new ArrayList<Object>(); List<Object> argList = new ArrayList<Object>();
if(StringUtil.isNotBlank(parameters)) { if(StringUtil.isNotBlank(parameters)) {
List<String> parametersSplitAry = Arrays.asList(parameters.split(",\\s+")); List<String> parametersSplitAry = Arrays.asList(parameters.split(",\\s+"));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment