I am new in DBCP
.
I am using DBCP connection pool
with Spring
and hibernate
,Database
is MYSQL
.
I am unable to find how many connections
are created in connection pool
.
Every time it's giving different processlist count.
I am using configuration is:
<code>
dbcp.maxActive =11
dbcp.maxIdle =70
dbcp.validationQuery=SELECT 1
dbcp.minIdle =6
dbcp.timeBetweenEvictionRunsMillis=34000
dbcp.minEvictableIdleTimeMillis = 55000
dbcp.testOnBorrow =true
</code>
Please help me out if any one having idea. Thanks