与spring-boot-starter-data-redis冲突的依赖都有哪些
时间: 2023-10-09 12:15:48 浏览: 136
与spring-boot-starter-data-redis冲突的依赖包括但不限于:
1. jedis
2. lettuce-core
3. commons-pool2
4. apache-commons-lang3
5. spring-data-commons
6. spring-data-redis
7. json-smart
8. netty-common
9. netty-transport-native-epoll
10. netty-transport-native-unix-common
11. netty-transport
12. commons-logging
13. log4j-api
14. slf4j-api
15. jackson-databind
16. jackson-core
17. jackson-annotations
18. fastjson
19. guava
20. tomcat-embed-core
具体情况需要根据项目实际情况进行分析。
相关问题
lock4j-redisson-spring-boot-starter和spring-boot-starter-data-redis是否冲突
这两个starter并不冲突,它们分别提供了不同的功能。lock4j-redisson-spring-boot-starter提供了使用Redisson实现分布式锁的功能,而spring-boot-starter-data-redis提供了对Redis进行操作的功能。如果你需要使用分布式锁,可以选择使用lock4j-redisson-spring-boot-starter,如果需要直接操作Redis,可以选择使用spring-boot-starter-data-redis。
spring-boot-starter-data-redis与spring-boot-starter-redis区别
spring-boot-starter-data-redis和spring-boot-starter-redis都是Spring Boot框架中与Redis集成的starter依赖,但它们的作用略有不同。
spring-boot-starter-data-redis是Spring Data Redis的starter依赖,它提供了对Redis的支持,包括使用RedisTemplate和Spring Data Redis Repository访问Redis数据库等功能。
而spring-boot-starter-redis则是Lettuce和Jedis的starter依赖,它提供了对Redis客户端的支持,包括使用Lettuce或Jedis连接Redis服务器等功能。
因此,如果你需要在Spring Boot应用中使用Spring Data Redis提供的高级功能,比如Repository访问等,则应该选择spring-boot-starter-data-redis;如果你只需要使用Redis客户端连接Redis服务器,则可以选择spring-boot-starter-redis。
阅读全文