Artemis 中嵌入式模式和本机模式之间的差异
Differences between Embedded and Native Modes in Artemis
根据官方 Spring Artemis 模式的引导文档:
The supported modes are: embedded
(to make explicit that an embedded
broker is required and should lead to an error if the broker is not
available in the classpath), and native
to connect to a broker using
the netty transport protocol.
Adding org.apache.activemq:artemis-jms-server
to your application allows you to use the embedded
mode.
embedded
模式是否用于创建Artemis服务器? Artemis 中的嵌入式模式和本机模式有什么区别?
Apache ActiveMQ Artemis 核心被设计为一组简单的 POJO,因此如果您
有一个内部需要消息传递功能的应用程序,但您不想将其作为 Apache ActiveMQ Artemis 代理程序公开,您可以直接实例化代理程序并将其嵌入到您自己的应用程序中,请参阅 documentation 了解更多详细信息。
当 Spring Boot 使用 Artemis 嵌入式模式时,它会连接到您自己的应用程序中的代理实例 运行,由 Spring Boot 本身实例化。
当 Spring Boot 使用 Artemis 本机模式时,它会连接到您自己的应用程序之外的代理实例 运行,您可以使用 spring.artemis.* 中的配置属性来设置连接参数:
spring.artemis.mode=native
spring.artemis.host=192.168.1.210
spring.artemis.port=9876
spring.artemis.user=admin
spring.artemis.password=secret
根据官方 Spring Artemis 模式的引导文档:
The supported modes are:
embedded
(to make explicit that an embedded broker is required and should lead to an error if the broker is not available in the classpath), andnative
to connect to a broker using the netty transport protocol.Adding
org.apache.activemq:artemis-jms-server
to your application allows you to use theembedded
mode.
embedded
模式是否用于创建Artemis服务器? Artemis 中的嵌入式模式和本机模式有什么区别?
Apache ActiveMQ Artemis 核心被设计为一组简单的 POJO,因此如果您 有一个内部需要消息传递功能的应用程序,但您不想将其作为 Apache ActiveMQ Artemis 代理程序公开,您可以直接实例化代理程序并将其嵌入到您自己的应用程序中,请参阅 documentation 了解更多详细信息。
当 Spring Boot 使用 Artemis 嵌入式模式时,它会连接到您自己的应用程序中的代理实例 运行,由 Spring Boot 本身实例化。
当 Spring Boot 使用 Artemis 本机模式时,它会连接到您自己的应用程序之外的代理实例 运行,您可以使用 spring.artemis.* 中的配置属性来设置连接参数:
spring.artemis.mode=native
spring.artemis.host=192.168.1.210
spring.artemis.port=9876
spring.artemis.user=admin
spring.artemis.password=secret