怎么检查jdbc连接是否关闭
展开全部
Connection的isClosed方法
isValid方法也可以,如果连接尚未关闭并且仍然有效,则返回 true
#----------------apache dbcp配置-----------------------
#<!-- 初始化连接 -->
dbcp.initialSize=15
#<!-- 最大空闲连接 -->
dbcp.maxIdle=10
#<!-- 最小空闲连接 -->
dbcp.minIdle=1
#最大连接数量
dbcp.maxActive=1000
#是否在自动回收超时连接的时候打印连接的超时错误
dbcp.logAbandoned=true
#是否自动回收超时连接
dbcp.removeAbandoned=true
#超时时间(以秒数为单位)
dbcp.removeAbandonedTimeout=300
#<!-- 超时等待时间以毫秒为单位 6000毫秒/1000等于60秒 -->
dbcp.maxWait=3000
dbcp.testOnReturn=false
#set to 'SELECT 1'
dbcp.validationQuery = "SELECT * from c3p0testtable"
#set to 'true'
dbcp.testWhileIdle = true
#some positive integer
dbcp.timeBetweenEvictionRunsMillis = 3000000
#set to something smaller than 'wait_timeout'
dbcp.minEvictableIdleTimeMillis = 3200000
#if you don't mind a hit for every getConnection(), set to "true"
dbcp.testOnBorrow = true
#access date config ss
date=60000
isValid方法也可以,如果连接尚未关闭并且仍然有效,则返回 true
#----------------apache dbcp配置-----------------------
#<!-- 初始化连接 -->
dbcp.initialSize=15
#<!-- 最大空闲连接 -->
dbcp.maxIdle=10
#<!-- 最小空闲连接 -->
dbcp.minIdle=1
#最大连接数量
dbcp.maxActive=1000
#是否在自动回收超时连接的时候打印连接的超时错误
dbcp.logAbandoned=true
#是否自动回收超时连接
dbcp.removeAbandoned=true
#超时时间(以秒数为单位)
dbcp.removeAbandonedTimeout=300
#<!-- 超时等待时间以毫秒为单位 6000毫秒/1000等于60秒 -->
dbcp.maxWait=3000
dbcp.testOnReturn=false
#set to 'SELECT 1'
dbcp.validationQuery = "SELECT * from c3p0testtable"
#set to 'true'
dbcp.testWhileIdle = true
#some positive integer
dbcp.timeBetweenEvictionRunsMillis = 3000000
#set to something smaller than 'wait_timeout'
dbcp.minEvictableIdleTimeMillis = 3200000
#if you don't mind a hit for every getConnection(), set to "true"
dbcp.testOnBorrow = true
#access date config ss
date=60000
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询