A subclass of JmsTemplate that uses the JMS 1.0.2 specification, rather than
the JMS 1.1 methods used by JmsTemplate itself. This class can be used for JMS
1.0.2 providers, offering the same API as JmsTemplate does for JMS 1.1 providers.
You must specify the domain or style of messaging to be either
Point-to-Point (Queues) or Publish/Subscribe (Topics), using the
"pubSubDomain" property. Point-to-Point (Queues) is the default domain.
The "pubSubDomain" property is an important setting due to the use of similar
but seperate class hierarchies in the JMS 1.0.2 API. JMS 1.1 provides a new
domain-independent API that allows for easy mix-and-match use of Point-to-Point
and Publish/Subscribe domain.
This template uses a DynamicDestinationResolver and a SimpleMessageConverter102
as default strategies for resolving a destination name or converting a message,
respectively.
You must specify the domain or style of messaging to be either Point-to-Point (Queues) or Publish/Subscribe (Topics), using the "pubSubDomain" property. Point-to-Point (Queues) is the default domain.
The "pubSubDomain" property is an important setting due to the use of similar but seperate class hierarchies in the JMS 1.0.2 API. JMS 1.1 provides a new domain-independent API that allows for easy mix-and-match use of Point-to-Point and Publish/Subscribe domain.
This template uses a DynamicDestinationResolver and a SimpleMessageConverter102 as default strategies for resolving a destination name or converting a message, respectively.