jetty服务器java.sql.SQLException: Already closed处理

在jetty的数据源配置中添加如下配置
true
true
true
select 1 from dual

分别是添加了连接池取出,返回,和空闲时是否测试连接的有效性。
其中validationQuery的测试连接有效性的sql配置需要根据数据库进行调整。
最终配置如下:

	oracle.jdbc.driver.OracleDriver
	jdbc:oracle:thin:@10.0.20.80:1521:dev
	ccic
	ccic
	100
	30
	1000
	true
	true
	60
	true
	true
        true
        true
        select 1 from dual

你可能感兴趣的:(maven)