spring-boot-starter-data-redis 为什么要排除 netty-common
时间: 2023-11-28 19:03:54 浏览: 77
spring-boot-starter-test-2.2.13.RELEASE.jar
spring-boot-starter-data-redis是Spring Boot提供的一个用于集成Redis的starter,它会自动配置RedisTemplate和其他相关的bean。而netty-common是Netty框架的一个核心依赖,它提供了一些通用的工具类和接口。但是,netty-common的版本与spring-boot-starter-data-redis中的netty-all的版本存在冲突,可能会导致应用程序无法启动或出现其他问题。因此,在使用spring-boot-starter-data-redis时,需要排除netty-common依赖,以避免冲突。
阅读全文