我在一台服务器上运行了两个Spring Boot应用程序。两者都使用嵌入式ActiveMQ JMS。我想为每个应用程序分别使用JMS实例。我怎样才能为每个端口设置端口?有spring.activemq.port
之类的财产吗?
当我运行第二个应用程序时,我得到以下预期错误:
Failed to start JMX connector Cannot bind to URL [rmi://localhost:1099/jmxrmi]: javax.naming.NameAlreadyBoundException: jmxrmi [Root exception is java.rmi.AlreadyBoundException: jmxrmi]. Will restart management to re-create JMX connector, trying to remedy this issue.
答案 0 :(得分:3)
我有同样的问题,两个SpringBoot进程,我想通过ActiveMQ发送消息。 首先,我让它开始使用ActiveMQ启动另一个进程,并将SpringBoot进程配置到 application.properties 文件中:
spring.activemq.broker-url = tcp://localhost:61616
使用此配置,告诉Springboot连接到外部ActiveMq服务。这有效,但是我需要先进行start the ActiveMQ并在Springboot进程之后。在某些页面中,我已经读过这必须是在生产环境中使用的方式。
另一种解决方案是在其中一个SpringBoot进程中使用嵌入式JMS支持,这样您就需要配置ActiveMQ代理服务,在一个Springboot进程中侦听连接。你可以这样做添加一个Broker bean:
@Bean
public BrokerService broker() throws Exception {
final BrokerService broker = new BrokerService();
broker.addConnector("tcp://localhost:61616");
broker.addConnector("vm://localhost");
broker.setPersistent(false);
return broker;
}
现在使用此bean的SpringBoot进程不需要 application.properties 中的先前配置,这将是第一个启动的进程,以便让ActiveMQ监听其他进程连接
另一个Springboot进程仍然需要在 application.properties 上进行配置才能连接到第一个进程创建的ActiveMq。
希望它对你有所帮助。 最好的问候。
答案 1 :(得分:2)
您可以使用spring.activemq.broker-url
属性配置代理网址,例如将其设置为spring.activemq.broker-url=tcp://localhost:61616
。
有关可用属性的全面参考,您可以查看此reference。
答案 2 :(得分:1)
spring.activemq.broker-URL
包含端口