spring-context-jedis.xml]: Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: org/apache/commons/pool2/impl/GenericObjectPoolConfig
时间: 2023-11-17 22:16:47 浏览: 68
java.lang.NoClassDefFoundError:
这个错误的原因是缺少了 commons-pool2 的依赖。你可以在 pom.xml 中添加以下依赖来解决该问题:
```xml
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.9.0</version>
</dependency>
```
如果你使用的是 Gradle,可以在 build.gradle 中添加以下依赖:
```
implementation 'org.apache.commons:commons-pool2:2.9.0'
```
阅读全文