Spring boot - sharing embedded JMS broker with separate service
问题 I have two services which should communicate with each other via ActiveMQ. Everything works nicely when I have the receiver and sender in one service but when I split them, I got a strange activemq exception. This is configuration of service A: @EnableScheduling @SpringBootApplication @EnableJms public class App extends SpringBootServletInitializer { private static final Logger log = LoggerFactory.getLogger(App.class); @Autowired private static JmsTemplate jms; public static void main(String[