启动连接redis时报错 因为spring-boot-starter-data-redis 升级后将 commons-pool2 踢出去了
解决方式两个
1.导入commons-pool2依赖
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> </dependency>
2.降低 spring-boot-starter-data-redis 依赖版本
<!--redis依赖配置--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>1.5.13.RELEASE</version> </dependency>