GenericObjectPool

问题描述 投票:1回答:1

我想我在这里找到了一个很好的答案:log4j2-jdbc-manager-cannot-connect-to-the-database

我试图在我的项目中实现代码,除了这个小错误之外,一切正常:

GenericObjectPool<PoolableConnection>

类型GenericObjectPool不接受参数。

我不知道如何做一个解决方法,或者改变什么。

谢谢你的帮助!

mysql jdbc log4j2
1个回答
0
投票

试试这个

https://git-wip-us.apache.org/repos/asf?p=commons-dbcp.git;a=blob_plain;f=doc/PoolingDataSourceExample.java;hb=HEAD

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-dbcp2</artifactId>
    <version>2.1</version>
</dependency>
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-pool2</artifactId>
    <version>2.3</version>
</dependency>

然后在你的代码中添加:

import org.apache.commons.pool2.impl.GenericObjectPool;
© www.soinside.com 2019 - 2024. All rights reserved.