大家早,
我最近一直在努力使用 spring-boot-artemis-starter。我对其 spring-boot 支持的理解如下:
- 设置
spring.artemis.mode=embedded
,并且像 tomcat 一样,spring-boot 将实例化通过 tcp (服务器模式)可访问的代理。以下命令应该成功:nc -zv localhost 61616
- set
spring.artmis.mode=native
和 spring-boot 只会根据spring.artemis.*
属性(客户端模式)配置 jms 模板。
客户端模式适用于我机器上的独立 artemis 服务器。不幸的是,我永远无法在服务器模式下访问 tcp 端口。
如果有人确认我对嵌入式模式的理解,我将不胜感激。
感谢您的旅行帮助
经过一番挖掘,我注意到 spring-boot-starter-artemis 提供的开箱即用的实现使用了org.apache.activemq.artemis.core.remoting.impl.invm.InVMAcceptorFactory
接受器。我想知道这是否不是根本原因(同样我绝不是专家)。但似乎有一种方法可以自定义 artemis 配置。因此,我尝试了以下配置,但没有任何运气:
@SpringBootApplication
public class MyBroker {
public static void main(String[] args) throws Exception {
SpringApplication.run(MyBroker.class, args);
}
@Autowired
private ArtemisProperties artemisProperties;
@Bean
public ArtemisConfigurationCustomizer artemisConfigurationCustomizer() {
return configuration -> {
try {
configuration.addAcceptorConfiguration("netty", "tcp://localhost:" + artemisProperties.getPort());
} catch (Exception e) {
throw new RuntimeException("Failed to add netty transport acceptor to artemis instance");
}
};
}
}