【发布时间】:2014-06-16 20:57:15
【问题描述】:
Apache Commons DBCP overview page 声明:
DBCP 2.0 compiles and runs under Java 7 only (JDBC 4.1)
DBCP 1.4 compiles and runs under Java 6 only (JDBC 4)
DBCP 1.3 compiles and runs under Java 1.4-5 only (JDBC 3)
DBCP 2.0 binaries should be used by applications running under Java 7.
DBCP 1.4 binaries should be used by applications running under Java 6.
DBCP 1.3 should be used when running under Java 1.4 5.
在 JVM 7 上使用 Apache Commons DBCP 1.4 可能会出现什么问题(来自使用 JDK 7 编译的应用程序)?
【问题讨论】:
标签: java java-7 apache-commons-dbcp