mysql jdbc dbcp_dbcp连接池问题java.lang.AbstractMethodError: com.mysql.jdbc.

java.lang.AbstractMethodError: com.mysql.jdbc.Connection.isValid(I)Z

at org.apache.commons.dbcp2.DelegatingConnection.isValid(DelegatingConnection.java:914)

at org.apache.commons.dbcp2.PoolableConnection.validate(PoolableConnection.java:227)

at org.apache.commons.dbcp2.PoolableConnectionFactory.validateConnection(PoolableConnectionFactory.java:303)

at org.apache.commons.dbcp2.BasicDataSource.validateConnectionFactory(BasicDataSource.java:2165)

at org.apache.commons.dbcp2.BasicDataSource.createPoolableConnectionFactory(BasicDataSource.java:2148)

at org.apache.commons.dbcp2.BasicDataSource.createDataSource(BasicDataSource.java:1903)

at org.apache.commons.dbcp2.BasicDataSource.getConnection(BasicDataSource.java:1413)

at com.tsc.util.JDBCTools.getConnection(JDBCTools.java:65)

at test.TestJDBCTools.testJDBCTools(TestJDBCTools.java:13)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:601)

at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)

at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)

at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)

at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)

at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79)

at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71)

at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49)

at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)

at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)

at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)

at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)

at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)

at org.junit.runners.ParentRunner.run(ParentRunner.java:236)

at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)

at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)

at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

private static final String configFile = “dbcp.properties”;

private static DataSource dataSource;

static {

Properties prop = new Properties();

try {

prop.load(JDBCTools.class.getClassLoader()

.getResourceAsStream(configFile));

dataSource = BasicDataSourceFactory.createDataSource(prop);

} catch (Exception e) {

e.printStackTrace();

log.error(“数据库连接池初始化失败” + e.getMessage());

}

}

public JDBCTools() {

}

/**

* 设置事务提交

* @param connection

*/

public static void commit(Connection connection){

if(connection != null){

try {

connection.commit();

} catch (SQLException e) {

log.error(“设置事务提交异常” + e.getMessage());

}

}

}

/**

* 使用dbcp数据库连接池获取数据库连接

*

* @return Connection

*/

public static final Connection getConnection() {

Connection conn = null;

try {

conn = dataSource.getConnection();

} catch (SQLException e) {

e.printStackTrace();

log.error(“获取数据库连接失败” + e.getMessage());

}

return conn;

}

解决方案

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值