1. Commons-DBCP는 1.2.1대신 DBCP 1.2.2 즉시 사용이 가능합니다. (버그들이 수정된 버전)
2. 이를 의존하는 commons-pool은 1.3으로 대신 사용하면 됩니다. (backward compatibility됨)
commons-dbcp : 1.2.2 사용시 commons-pool : 1.3 commons-collection : 3.1 즉, DBCP의존->POOL의존 (COLLECTION 의존안함!!) – 순수 자바에 의존 commons-dbcp : 1.2.1 사용시 commons-pool : 1.1 commons-collection : 3.1 즉, DBCP의존->POOL의존->COLLECTION의존 |
DBCP 1.2.2 버전은 순수하게 버그수정판입니다. 그래서 더욱 더 안정적인 버전입니다.
==== commons-dbcp
http://commons.apache.org/dbcp/changes-report.html
1.2.2 2007-04-04 This is a maintenance release containing bug fixes and enhancements. All API changes are binary compatible with version 1.2.1.
1.2.1 2004-06-12 Maintenance Release to restore JDK 1.3 compatibility
==== commons-pool
http://commons.apache.org/pool/downloads.html
Commons-pool 1.3 only depends at runtime on a Java 1.3 or better JVM.
Commons-pool 1.2 depends at runtime on commons-collections.
1.1 소스를 까보니, commons-collections 클래스를 참조하고 있었다.
'java core' 카테고리의 다른 글
jmx의 첫장 (0) | 2007.11.13 |
---|---|
자바 메모리와 모하드 디스크와의 관계 (0) | 2007.10.19 |
jconsole 사용하기 (자바) (0) | 2007.10.01 |
jconsole 사용하기 (0) | 2007.10.01 |
jconsole (0) | 2007.09.28 |