Fix various javadoc warnings
This commit is contained in:
@@ -46,8 +46,8 @@ import org.springframework.util.ReflectionUtils;
|
||||
*
|
||||
* <p>If you want to use dynamic destination creation, you must specify
|
||||
* the type of JMS destination to create, using the "pubSubDomain" property.
|
||||
* For other operations, this is not necessary, in contrast to when working
|
||||
* with {@link JmsTemplate102}. Point-to-Point (Queues) is the default domain.
|
||||
* For other operations, this is not necessary. Point-to-Point (Queues) is the default
|
||||
* domain.
|
||||
*
|
||||
* <p>Default settings for JMS Sessions are "not transacted" and "auto-acknowledge".
|
||||
* As defined by the J2EE specification, the transaction and acknowledgement
|
||||
|
||||
@@ -63,11 +63,10 @@ public abstract class JmsGatewaySupport implements InitializingBean {
|
||||
* Create a JmsTemplate for the given ConnectionFactory.
|
||||
* Only invoked if populating the gateway with a ConnectionFactory reference.
|
||||
* <p>Can be overridden in subclasses to provide a JmsTemplate instance with
|
||||
* a different configuration or the JMS 1.0.2 version, JmsTemplate102.
|
||||
* a different configuration.
|
||||
* @param connectionFactory the JMS ConnectionFactory to create a JmsTemplate for
|
||||
* @return the new JmsTemplate instance
|
||||
* @see #setConnectionFactory
|
||||
* @see org.springframework.jms.core.JmsTemplate102
|
||||
*/
|
||||
protected JmsTemplate createJmsTemplate(ConnectionFactory connectionFactory) {
|
||||
return new JmsTemplate(connectionFactory);
|
||||
|
||||
Reference in New Issue
Block a user