According to official Spring Boot docs of Artemis modes:
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.
Is embedded
mode used to create an Artemis server? What are the differences between embedded and native modes in Artemis?