c3p0-0.9.5.2语句解包导致abstractmethoderror

时间:2016-07-08 15:54:55

标签: java mysql jdbc connection c3p0

我使用的是c3p0版本0.9.5.1。这个错误的unwrap()方法错误:

  

java.lang.AbstractMethodError:Method   COM / mchange / V2 / C3P0 / IMPL / NewProxyStatement.unwrap(Ljava /郎/类;)Ljava /郎/对象;   是抽象的   com.mchange.v2.c3p0.impl.NewProxyStatement.unwrap(NewProxyStatement.java)

这是我的代码:

com.mysql.jdbc.Statement stm =  proxyStatement.unwrap(com.mysql.jdbc.Statement.class)

我看到一些帖子说它应该从0.9.5开始工作。 它还是一个bug吗?

如何从c3p0 Statement / Connection获取原始Statement / Connection呢? 非常感谢

1 个答案:

答案 0 :(得分:1)

你几乎可以肯定在你的applcation有效的let lines = points.map { $1 - $0 } 中有一个旧版本的c3p0。请查看INFO上的日志,了解c3p0的横幅,例如

CLASSPATH

为了确保这一点,我刚刚验证了语句解包在c3p0-0.9.5.2中的规定。我很抱歉这是Scala REPL代码而不是Java。这真的很方便。但是JVM级别的底层操作是相同的。

INFO: Initializing c3p0-0.9.5.2 [built 08-December-2015 22:06:04 -0800; debug? true; trace: 10]

我正在使用MySQL Connector / J版本6.0.3,它可能比你的更新(因此不同的Statement类名称)。您可以用更实现级的中立方式解包Statement:

[info] Starting scala interpreter...
[info] 
Welcome to Scala version 2.11.5 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_31).
Type in expressions to have them evaluated.
Type :help for more information.

scala> import com.mchange.v2.c3p0._
import com.mchange.v2.c3p0._

scala> val cpds = new ComboPooledDataSource()
Jul 08, 2016 1:44:43 PM com.mchange.v2.log.MLog 
INFO: MLog clients using java 1.4+ standard logging.
Jul 08, 2016 1:44:43 PM com.mchange.v2.c3p0.C3P0Registry 
INFO: Initializing c3p0-0.9.5.2 [built 08-December-2015 22:06:04 -0800; debug? true; trace: 10]
cpds: com.mchange.v2.c3p0.ComboPooledDataSource = com.mchange.v2.c3p0.ComboPooledDataSource[ identityToken -> 2u6yea9h1khti8o11c1oj2|2407f8d8, dataSourceName -> 2u6yea9h1khti8o11c1oj2|2407f8d8 ]

scala> cpds.setUser("root")

scala> cpds.setJdbcUrl("jdbc:mysql://localhost/test?useSSL=false&serverTimezone=UTC")

scala> val conn = cpds.getConnection()
Jul 08, 2016 1:45:03 PM com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource 
INFO: Initializing c3p0 pool... com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIncrement -> 3, acquireRetryAttempts -> 30, acquireRetryDelay -> 1000, autoCommitOnClose -> false, automaticTestTable -> null, breakAfterAcquireFailure -> false, checkoutTimeout -> 0, connectionCustomizerClassName -> null, connectionTesterClassName -> com.mchange.v2.c3p0.impl.DefaultConnectionTester, contextClassLoaderSource -> caller, dataSourceName -> 2u6yea9h1khti8o11c1oj2|2407f8d8, debugUnreturnedConnectionStackTraces -> false, description -> null, driverClass -> null, extensions -> {timezone=HKT}, factoryClassLocation -> null, forceIgnoreUnresolvedTransactions -> false, forceSynchronousCheckins -> false, forceUseNamedDriverClass -> false, identityToken -> 2u6yea9h1khti8o11c1oj2|2407f8d8, idleConnectionTestPeriod -> 0, initialPoolSize -> 3, jdbcUrl -> jdbc:mysql://localhost/test?useSSL=false&serverTimezone=UTC, maxAdministrativeTaskTime -> 0, maxConnectionAge -> 0, maxIdleTime -> 0, maxIdleTimeExcessConnections -> 0, maxPoolSize -> 15, maxStatements -> 0, maxStatementsPerConnection -> 0, minPoolSize -> 3, numHelperThreads -> 3, preferredTestQuery -> null, privilegeSpawnedThreads -> false, properties -> {user=******}, propertyCycle -> 0, statementCacheNumDeferredCloseThreads -> 0, testConnectionOnCheckin -> false, testConnectionOnCheckout -> false, unreturnedConnectionTimeout -> 0, userOverrides -> {}, usesTraditionalReflectiveProxies -> false ]
conn: java.sql.Connection = com.mchange.v2.c3p0.impl.NewProxyConnection@6044a933 [wrapping: com.mysql.cj.jdbc.ConnectionImpl@4318f07b]

scala> val proxyStatement = conn.createStatement()
proxyStatement: java.sql.Statement = com.mchange.v2.c3p0.impl.NewProxyStatement@57b482ea [wrapping: com.mysql.cj.jdbc.StatementImpl@b120337]

scala> val nativeStmt = proxyStatement.unwrap(classOf[com.mysql.cj.jdbc.StatementImpl])
nativeStmt: com.mysql.cj.jdbc.StatementImpl = com.mysql.cj.jdbc.StatementImpl@b120337

请注意,Scala的scala> val nativeStmt2 = proxyStatement.unwrap(classOf[java.sql.Statement]) nativeStmt2: java.sql.Statement = com.mysql.cj.jdbc.StatementImpl@b120337 等同于Java的类文字,classOf[java.sql.Statement]