1 2 3 4 5 |
경고: Name = Example01 Property maxActive is not used in DBCP2, use maxTotal instead. maxTotal default value is 8. You have set value of "50" for "maxActive" property, which is being ignored. |
Tomcat JDBC Connection Pool and Apache DBCP are two different connection pool implementations.
In your stage environment you probably have Apache DBCP2 in classpath and Tomcat tries to use it instead of Tomcat JDBC Connection Pool.
maxActive 를 maxTotal
maxWait -> maxWaitMillis 로 수정
댓글