最近有个需求学生排队面试的需求,需要用到队列,想来想去自己造轮子不如上框架(毕竟项目中也有很多地方用到了分布式锁),直接引入了Redisson,引入后发现XXL-Job定时任务执行报错了,项目XXL-Job版本用的是2.3.0,Redisson用的是3.12.5
很明显是版本冲突了
解决
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>3.12.5</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
</exclusions>
</dependency>