You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zh...@apache.org on 2022/12/08 09:36:56 UTC

[camel-quarkus] branch main updated: tidy up of jms extension documentation (#4327)

This is an automated email from the ASF dual-hosted git repository.

zhfeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new d013382c3a tidy up of jms extension documentation (#4327)
d013382c3a is described below

commit d013382c3a45241d21c73f5ddbc6752c5bf1685f
Author: Zheng Feng <zh...@gmail.com>
AuthorDate: Thu Dec 8 17:36:50 2022 +0800

    tidy up of jms extension documentation (#4327)
---
 extensions/jms/runtime/src/main/doc/usage.adoc | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/extensions/jms/runtime/src/main/doc/usage.adoc b/extensions/jms/runtime/src/main/doc/usage.adoc
index 13e638fabd..b1c28de194 100644
--- a/extensions/jms/runtime/src/main/doc/usage.adoc
+++ b/extensions/jms/runtime/src/main/doc/usage.adoc
@@ -8,9 +8,10 @@ you must ensure that the `camel-quarkus-xml-jaxp` extension is present on the cl
 When sending JMS message payloads as `javax.jms.ObjectMessage`, you must annotate the relevant classes to be registered for serialization with `@RegisterForReflection(serialization = true)`. 
 Note that this extension automatically sets `quarkus.camel.native.reflection.serialization-enabled = true` for you. Refer to the xref:user-guide/native-mode.adoc#serialization[native mode user guide] for more information.
 
-=== Pooling and XA integrate support
+=== Support for Connection pooling and X/Open XA distributed transactions
 
-You can use the `quarkus-pooled-jms` extension to get pooling and XA integrate support for JMS connections. Refer to the https://quarkiverse.github.io/quarkiverse-docs/quarkus-pooled-jms/dev/index.html[quarkus-pooled-jms] extension documentation for more information. Currently, it only works with `quarkus-artemis-jms` extension. Just add these two dependencies to your `pom.xml`:
+You can use the `quarkus-pooled-jms` extension to get pooling and XA support for JMS connections. Refer to the https://quarkiverse.github.io/quarkiverse-docs/quarkus-pooled-jms/dev/index.html[quarkus-pooled-jms] extension documentation for more information.
+Currently, it only works with `quarkus-artemis-jms` extension. Just add these two dependencies to your `pom.xml`:
 [source,xml]
 ----
 <dependency>
@@ -23,7 +24,9 @@ You can use the `quarkus-pooled-jms` extension to get pooling and XA integrate s
 </dependency>
 ----
 
-Pooling is default enabled and for XA integrate support, you need to add the following configuration to your `application.properties`:
+Note that pooling is enabled by default.
+
+To enable XA, you need to add the following configuration to your `application.properties`:
 [source,properties]
 ----
 quarkus.pooled-jms.xa.enabled=true