develog

[Tomcat] Tomcat 6 DBCP default value 본문

Web & WAS/Tomcat

[Tomcat] Tomcat 6 DBCP default value

냐옴 2015. 7. 9. 14:49


name default value
   
driverClassName                      
url                                  
username                             
password                             
   
initialSize                         Default: 0
maxWait                             Default: -1 (infinite)
   
maxActive                           Default: 8
maxIdle                             Default: 8
minIdle                             Default: 0
   
validationQuery                      
validationQueryTimeout              Default: -1 (infinite)
testOnBorrow                        Default: true
testOnReturn                        Default: false
   
timeBetweenEvictionRunsMillis       Default: -1 (disabled)
numTestsPerEvictionRun              Default: 3
minEvictableIdleTimeMillis          Default: 30*60*1000 (30 minutes)
testWhileIdle                       Default: false
   
removeAbandoned                     Default: false
removeAbandonedTimeout              Default: 300
logAbandoned                        Default: false
   
defaultAutoCommit                   Default: true
defaultReadOnly                     Default: false
defaultTransactionIsolation         Default: no default set
   
poolPreparedStatements              Default: false
maxOpenPreparedStatements           Default: -1 (unlimited)
   
defaultCatalog                      Default: not set
connectionInitSqls                  Default: no statement
connectionProperties                Default: no properties
accessToUnderlyingConnectionAllowed Default: false


'Web & WAS > Tomcat' 카테고리의 다른 글

[Tomcat] Tomcat 7, 400 Bad Request  (0) 2017.04.13
[Tomcat] manager does not exist  (0) 2016.11.25
[Tomcat] Tomcat JNDI Datasources HOW-TO  (0) 2015.07.09
[Tomcat] Virtual Host 추가  (0) 2015.03.31
[Tomcat] Apache Tomcat Versions  (0) 2014.12.07
Comments