当前位置: 首页>后端>正文

Redisson与XXL-Job Netty版本冲突问题

最近有个需求学生排队面试的需求,需要用到队,想来想去自己造轮子不如上框架(毕竟项目中也有很多地方用到了分布式锁),直接引入了Redisson,引入后发现XXL-Job定时任务执行报错了,项目XXL-Job版本用的是2.3.0,Redisson用的是3.12.5


Redisson与XXL-Job Netty版本冲突问题,第1张

很明显是版本冲突了
解决

<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>

https://www.xamrdz.com/backend/3dc1932945.html

相关文章: