Skip to content

Commit

Permalink
Merge pull request #28183 from phxql
Browse files Browse the repository at this point in the history
* gh-28183:
  Polish "Explain how to disable/configure the ActiveMQ embedded broker"
  Explain how to disable/configure the ActiveMQ embedded broker

Closes gh-28183
  • Loading branch information
wilkinsona committed Oct 22, 2021
2 parents 773b0f9 + 8a78864 commit 7a38455
Showing 1 changed file with 16 additions and 2 deletions.
Expand Up @@ -5840,12 +5840,24 @@ Spring Boot also auto-configures the necessary infrastructure to send and receiv
[[boot-features-activemq]]
==== ActiveMQ Support
When https://activemq.apache.org/[ActiveMQ] is available on the classpath, Spring Boot can also configure a `ConnectionFactory`.
If the broker is present, an embedded broker is automatically started and configured (provided no broker URL is specified through configuration).
If the broker is present, an embedded broker is automatically started and configured (provided no broker URL is specified through configuration and the embedded broker is not disabled in the configuration).

NOTE: If you use `spring-boot-starter-activemq`, the necessary dependencies to connect or embed an ActiveMQ instance are provided, as is the Spring infrastructure to integrate with JMS.

ActiveMQ configuration is controlled by external configuration properties in `+spring.activemq.*+`.
For example, you might declare the following section in `application.properties`:

By default, ActiveMQ is auto-configured to use the https://activemq.apache.org/vm-transport-reference.html[VM transport], which starts a broker embedded in the same JVM instance.

You can disable the embedded broker by configuring the configprop:spring.activemq.in-memory[] property, as shown in the following example:

[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
----
spring:
activemq:
in-memory: false
----

The embedded broker will also be disabled if you configure the broker URL, as shown in the following example:

[source,yaml,indent=0,configprops,configblocks]
----
Expand All @@ -5856,6 +5868,8 @@ For example, you might declare the following section in `application.properties`
password: "secret"
----

If you want to take full control over the embedded broker, refer to https://activemq.apache.org/how-do-i-embed-a-broker-inside-a-connection.html[the ActiveMQ documentation] for further information.

By default, a `CachingConnectionFactory` wraps the native `ConnectionFactory` with sensible settings that you can control by external configuration properties in `+spring.jms.*+`:

[source,yaml,indent=0,configprops,configblocks]
Expand Down

0 comments on commit 7a38455

Please sign in to comment.