SpringBoot的2.1.8.RELEASE版本使用多少版本的spring-boot-starter-data-redis和spring-boot-starter-cache
时间: 2023-09-02 08:11:08 浏览: 661
Spring-data-redis(Version 1.6.0.RC1)中文版
5星 · 资源好评率100%
在Spring Boot 2.1.8.RELEASE版本中,常用的`spring-boot-starter-data-redis`和`spring-boot-starter-cache`的版本是根据Spring Boot的版本进行管理的。可以通过查看Spring Boot官方文档或者 Maven Central Repository 来获取最新的版本信息。
一般情况下,Spring Boot的版本号和相应的starter版本号是对应的,可以使用相同的版本号进行依赖管理。例如,对于Spring Boot 2.1.8.RELEASE版本,推荐使用以下版本的starter:
- `spring-boot-starter-data-redis`:通常使用与Spring Boot相同版本的`spring-boot-starter-data-redis`,也就是2.1.8.RELEASE版本。
- `spring-boot-starter-cache`:同样使用与Spring Boot相同版本的`spring-boot-starter-cache`,即2.1.8.RELEASE版本。
请注意,这只是一般推荐的做法,具体版本号可能会因为不同的需求和场景而有所调整。建议查阅官方文档或者相关资源来获取最准确的版本信息。
阅读全文