Browse Source

Improve destination-type documentation

Issue: SPR-12073
pull/621/head
Stephane Nicoll 12 years ago
parent
commit
c0ea87010f
  1. 4
      spring-jms/src/main/resources/org/springframework/jms/config/spring-jms-4.1.xsd
  2. 12
      src/asciidoc/index.adoc

4
spring-jms/src/main/resources/org/springframework/jms/config/spring-jms-4.1.xsd

@ -219,7 +219,9 @@ @@ -219,7 +219,9 @@
<xsd:annotation>
<xsd:documentation><![CDATA[
The JMS destination type for this listener: "queue", "topic", "durableTopic",
"sharedTopic", "sharedDurableTopic". The default is "queue".
"sharedTopic", "sharedDurableTopic". This enables potentially the "pubSubDomain",
"subscriptionDurable" and "subscriptionShared" properties of the container. The
default is `queue` (i.e. disabling those 3 properties).
]]></xsd:documentation>
</xsd:annotation>
<xsd:simpleType>

12
src/asciidoc/index.adoc

@ -42112,8 +42112,10 @@ choices and message redelivery scenarios. @@ -42112,8 +42112,10 @@ choices and message redelivery scenarios.
may occur during the execution of the `MessageListener`.
| destination-type
| The JMS destination type for this listener: `queue`, `topic` or `durableTopic`. The
default is `queue`.
| The JMS destination type for this listener: `queue`, `topic`, `durableTopic`, `sharedTopic`
or `sharedDurableTopic`. This enables potentially the `pubSubDomain`, `subscriptionDurable`
and `subscriptionShared` properties of the container. The default is `queue` (i.e. disabling
those 3 properties).
| client-id
| The JMS client id for this listener container. Needs to be specified when using
@ -42216,8 +42218,10 @@ table: @@ -42216,8 +42218,10 @@ table:
method arguments. Default is a `SimpleMessageConverter`.
| destination-type
| The JMS destination type for this listener: `queue`, `topic` or `durableTopic`. The
default is `queue`.
| The JMS destination type for this listener: `queue`, `topic`, `durableTopic`, `sharedTopic`
or `sharedDurableTopic`. This enables potentially the `pubSubDomain`, `subscriptionDurable`
and `subscriptionShared` properties of the container. The default is `queue` (i.e. disabling
those 3 properties).
| client-id
| The JMS client id for this listener container. Needs to be specified when using

Loading…
Cancel
Save