Disabling Spring JMS Auto configuration in Spring Boot Application

前端 未结 4 1538
旧时难觅i
旧时难觅i 2020-12-16 12:49

In my spring boot application i configure two different instances of MQQueueConnectionFactory (different id) as it is a need of the application. For that i have added ibm cl

4条回答
  •  -上瘾入骨i
    2020-12-16 13:40

    FYI, use this to disable ActiveMQ

    @SpringBootApplication(exclude = ActiveMQAutoConfiguration.class)
    

提交回复
热议问题