SpringBoot2.1.X 整合ActiveMQ运行时发生JmsMessagingTemplate注解异常

异常信息:

SpringBoot2.1.X 整合ActiveMQ运行时发生JmsMessagingTemplate注解异常_第1张图片

原因:

     主要是: Springboot 2.1.X版本与activemq线程池管理包有冲突!

    下面线程池管理包在Springboot 2.0.X版本是可以使用!

     
            org.apache.activemq
            activemq-pool
        

解决:

换activemq线程池管理包

      
            org.messaginghub
            pooled-jms
        

 

你可能感兴趣的:(Spring,Boot)