redisson-spring-boot-starter 支持 springboot1

https://github.com/redisson/redisson/tree/master/redisson-spring-boot-starter#spring-boot-starter

由于最新版的redisson-spring-boot-starter支持2.2.x,看下图,如果历史项目中是springboot1,那就需要调整下redisson-spring-data,否则不支持

 

redisson-spring-data
module name
Spring Boot
version
redisson-spring-data-16 1.3.x
redisson-spring-data-17 1.4.x
redisson-spring-data-18 1.5.x
redisson-spring-data-20 2.0.x
redisson-spring-data-21 2.1.x
redisson-spring-data-22 2.2.x

 


3.12.2

 

以下以springboot1.4.4为例,其他版本也是同理,下面pom是重点

# 排除redisson-spring-data-22  引入redisson-spring-data-17


            org.redisson
            redisson-spring-boot-starter
            ${redisson.spring.boot.starter.version}
            
                
                    org.redisson
                    redisson-spring-data-22
                
            
        

        
            org.redisson
            redisson-spring-data-17
            ${redisson.spring.boot.starter.version}
        

 

 


spring:
  application:
      name: redisson
  # 单机redis 配置
  redis:
    host: localhost
    port: 6379
    database: 0
    password: 123456

 

 

 

 

 

 

 

 

你可能感兴趣的:(redission)