SpringBoot + ActiveMQ - How to set trusted packages?

后端 未结 6 951
既然无缘
既然无缘 2021-02-19 04:47

I\'m creating two springboot server & client applications communicating using JMS, and everything is working fine with the release 5.12.1 for activemq, but as s

6条回答
  •  广开言路
    2021-02-19 05:33

    You can just set one of the below spring boot properties in application.properties to set trusted packages.

    spring.activemq.packages.trust-all=true

    or

    spring.activemq.packages.trusted=,,

提交回复
热议问题