Springboot2通过lettuce连接redis集群出现异常报错

Caused by: java.lang.ClassNotFoundException: org.apache.commons.pool2.impl.GenericObjectPoolConfig异常

解决方案引入依赖:

  <dependency>

    <groupId>org.apache.commons</groupId>
    <artifactId>commons-pool2</artifactId>
  </dependency>

 

lettuce连接出现UnresolvedAddressException异常

解决方案引入依赖:

  <dependency>

    <groupId>io.netty</groupId>
    <artifactId>netty-all</artifactId>
  </dependency>

posted @ 2020-12-28 21:37  云翊宸  阅读(839)  评论(0)    收藏  举报