日志报错:
No operations allowed after connection closed.; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed.
解决办法:
对数据库进行如下配置即可:
dataSource.setTimeBetweenEvictionRunsMillis(3600000);
dataSource.setTestWhileIdle(true);
dataSource.setValidationQuery("select 1");
dataSource.setTestOnBorrow(false);
原文:https://www.cnblogs.com/ww25/p/13158013.html