required a bean of type 'org.springframework.jms.core.JmsMessagingTemplate'

问题描述:关于springboot2.1.*整合activemq时报错:required a bean of type 'org.springframework.jms.core.JmsMessagingTemplate'。

搜索网上有些有些人文件的配置信息由空格什么的,没能解决。

搜索到一篇正解的文章,完美解决:原因是springboot2.1.x和springboot2.0.x源码原因导致。

我这边解决:



    org.springframework.boot
    spring-boot-starter-activemq




    org.messaginghub
    pooled-jms


    
    

配置线程池依赖改用: org.messaginghub pooled-jms

即可。

文章链接:https://www.jianshu.com/p/bb396bf573bd

注:在此感谢原文作者。

你可能感兴趣的:(springboot)