Redisson依赖冲突记录

前言:项目使用的springboot项目为2.7.X


依赖冲突一:springboot 与 redisson版本冲突

项目中依赖了 Lock4j,此为苞米豆开源的分布式锁组件


    com.baomidou
    lock4j-redisson-spring-boot-starter
    ${lock4j.version}

用的当时Lock4j最新版本2.2.4,里面所依赖的是 redisson:redisson-spring-data-30 ,此版本对应springboot的是3.X,启动后报 NoClassDefFoundError, 找不到redisson某个类

解决方案:版本回退到2.2.4,其中引用的是 redisson:redisson-spring-data-23 ,适配成功

redisson-spring-data与Spring Boot version的版本对应关系

Redisson依赖冲突记录_第1张图片


依赖冲突二:gateway 与 redisson依赖的包冲突 

redisson中依赖了Web包


     org.springframework.boot
     spring-boot-starter-web

 启动gateway时报错:

Description:
Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway.

Action:
Please set spring.main.web-application-type=reactive or remove spring-boot-starter-web dependency.

问题所在: 

Redisson依赖冲突记录_第2张图片

解决方案:排除依赖 

究其原因是:spring-boot-starter-web不支持非阻塞

Redisson依赖冲突记录_第3张图片

你可能感兴趣的:(java,gateway,redis)