1. 程式人生 > >Spring Boot各版本對redis的支援

Spring Boot各版本對redis的支援

Spring Boot使用的是1.4(包括1.4版本)之前的版本使用如下配置:

<!-- Spring Boot使用的是1.4(包括1.4版本)之前的版本使用如下配置 -->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-redis</artifactId>
</dependency>

<!-- 1.5.* 的版本需要指定版本號 -->

<!-- 1.5.* 的版本需要指定版本號 -->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-redis</artifactId>
   <version>1.4.6.RELEASE</version>
</dependency>

<!-- 2.* 版本 redis依賴改名了,直接使用下面的依賴 -->

<!-- 2.* 版本 redis依賴改名了,直接使用下面的依賴 -->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>