Skip to content

Commit a1947d6

Browse files
committed
Merge branch '3.0.x' into 3.1.x
Closes gh-37615
2 parents 6fb252b + d266806 commit a1947d6

File tree

1 file changed

+7
-7
lines changed
  • spring-boot-project/spring-boot-docs/src/docs/asciidoc/messaging

1 file changed

+7
-7
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/messaging/jms.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Spring Boot also auto-configures the necessary infrastructure to send and receiv
88

99

1010
[[messaging.jms.activemq]]
11-
=== ActiveMQ Support
12-
When https://activemq.apache.org/[ActiveMQ] is available on the classpath, Spring Boot can configure a `ConnectionFactory`.
11+
=== ActiveMQ "Classic" Support
12+
When https://activemq.apache.org/components/classic[ActiveMQ "Classic"] is available on the classpath, Spring Boot can configure a `ConnectionFactory`.
1313

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

16-
ActiveMQ configuration is controlled by external configuration properties in `+spring.activemq.*+`.
17-
By default, ActiveMQ is auto-configured to use the https://activemq.apache.org/tcp-transport-reference[TCP transport], connecting by default to `tcp://localhost:61616`. The following example shows how to change the default broker URL:
16+
ActiveMQ "Classic" configuration is controlled by external configuration properties in `+spring.activemq.*+`.
17+
By default, ActiveMQ "Classic" is auto-configured to use the https://activemq.apache.org/tcp-transport-reference[TCP transport], connecting by default to `tcp://localhost:61616`. The following example shows how to change the default broker URL:
1818

1919
[source,yaml,indent=0,configprops,configblocks]
2020
----
@@ -49,7 +49,7 @@ If you'd rather use native pooling, you can do so by adding a dependency to `org
4949
TIP: See {spring-boot-autoconfigure-module-code}/jms/activemq/ActiveMQProperties.java[`ActiveMQProperties`] for more of the supported options.
5050
You can also register an arbitrary number of beans that implement `ActiveMQConnectionFactoryCustomizer` for more advanced customizations.
5151

52-
By default, ActiveMQ creates a destination if it does not yet exist so that destinations are resolved against their provided names.
52+
By default, ActiveMQ "Classic" creates a destination if it does not yet exist so that destinations are resolved against their provided names.
5353

5454

5555

@@ -102,7 +102,7 @@ If you'd rather use native pooling, you can do so by adding a dependency on `org
102102

103103
See {spring-boot-autoconfigure-module-code}/jms/artemis/ArtemisProperties.java[`ArtemisProperties`] for more supported options.
104104

105-
No JNDI lookup is involved, and destinations are resolved against their names, using either the `name` attribute in the Artemis configuration or the names provided through configuration.
105+
No JNDI lookup is involved, and destinations are resolved against their names, using either the `name` attribute in the ActiveMQ Artemis configuration or the names provided through configuration.
106106

107107

108108

0 commit comments

Comments
 (0)