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
Add the following bean:
@Bean
public ActiveMQConnectionFactory activeMQConnectionFactory() {
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("your broker URL");
factory.setTrustedPackages(Arrays.asList("com.my.package"));
return factory;
}
The ability to do this via a configuration property has been added for the next release: https://github.com/spring-projects/spring-boot/issues/5631