Error creating bean with name 'rocketMQTemplate' defined in class path resource

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘rocketMQTemplate’ defined in class path resource [org/apache/rocketmq/spring/autoconfigure/RocketMQAutoConfiguration.class]: Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: org/apache/rocketmq/remoting/netty/AsyncNettyRequestProcessor

我这里出现的原因是版本冲突导致的。
rocketmq-spring-boot-starter 使用的是 2.1.0 版本(内部依赖rocketmq-client 4.6.0 ),通过 maven dependencies 查看 依赖情况,发现他、 其内部 rocketmq-client 自动加载是 4.7.0 版本,实际应该加载4.6.0 版本,把 后面多余的 4.7.0 注释掉,重新刷新依赖包。即可解决问题

<dependency>
            <groupId>org.apache.rocketmqgroupId>
            <artifactId>rocketmq-spring-boot-starterartifactId>
            <version>2.1.0version>
        dependency>
        
        
        
        
        

你可能感兴趣的:(java,消息队列)