1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
/*
 * Copyright 2002-2010 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.jms.listener;

import javax.jms.Connection;
import javax.jms.Destination;
import javax.jms.ExceptionListener;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageListener;
import javax.jms.Queue;
import javax.jms.Session;
import javax.jms.Topic;

import org.springframework.jms.support.JmsUtils;
import org.springframework.util.Assert;
import org.springframework.util.ErrorHandler;

/**
 * Abstract base class for message listener containers. Can either host
 * a standard JMS {@link javax.jms.MessageListener} or a Spring-specific
 * {@link SessionAwareMessageListener}.
 *
 * <p>Usually holds a single JMS {@link Connection} that all listeners are
 * supposed to be registered on, which is the standard JMS way of managing
 * listeners. Can alternatively also be used with a fresh Connection per
 * listener, for J2EE-style XA-aware JMS messaging. The actual registration
 * process is up to concrete subclasses.
 *
 * <p><b>NOTE:</b> The default behavior of this message listener container
 * is to <b>never</b> propagate an exception thrown by a message listener up to
 * the JMS provider. Instead, it will log any such exception at the error level.
 * This means that from the perspective of the attendant JMS provider no such
 * listener will ever fail. However, if error handling is necessary, then
 * any implementation of the {@link ErrorHandler} strategy may be provided to
 * the {@link #setErrorHandler(ErrorHandler)} method. Note that JMSExceptions
 * <b>will</b> be passed to the ErrorHandler in addition to (but after) being
 * passed to an {@link ExceptionListener}, if one has been provided.
 *
 * <p>The listener container offers the following message acknowledgment options:
 * <ul>
 * <li>"sessionAcknowledgeMode" set to "AUTO_ACKNOWLEDGE" (default):
 * Automatic message acknowledgment <i>before</i> listener execution;
 * no redelivery in case of exception thrown.
 * <li>"sessionAcknowledgeMode" set to "CLIENT_ACKNOWLEDGE":
 * Automatic message acknowledgment <i>after</i> successful listener execution;
 * no redelivery in case of exception thrown.
 * <li>"sessionAcknowledgeMode" set to "DUPS_OK_ACKNOWLEDGE":
 * <i>Lazy</i> message acknowledgment during or after listener execution;
 * <i>potential redelivery</i> in case of exception thrown.
 * <li>"sessionTransacted" set to "true":
 * Transactional acknowledgment after successful listener execution;
 * <i>guaranteed redelivery</i> in case of exception thrown.
 * </ul>
 * The exact behavior might vary according to the concrete listener container
 * and JMS provider used.
 *
 * <p>There are two solutions to the duplicate processing problem:
 * <ul>
 * <li>Either add <i>duplicate message detection</i> to your listener, in the
 * form of a business entity existence check or a protocol table check. This
 * usually just needs to be done in case of the JMSRedelivered flag being
 * set on the incoming message (else just process straightforwardly).
 * <li>Or wrap the <i>entire processing with an XA transaction</i>, covering the
 * reception of the message as well as the execution of the message listener.
 * This is only supported by {@link DefaultMessageListenerContainer}, through
 * specifying a "transactionManager" (typically a
 * {@link org.springframework.transaction.jta.JtaTransactionManager}, with
 * a corresponding XA-aware JMS {@link javax.jms.ConnectionFactory} passed in as
 * "connectionFactory").
 * </ul>
 * Note that XA transaction coordination adds significant runtime overhead,
 * so it might be feasible to avoid it unless absolutely necessary.
 *
 * <p><b>Recommendations:</b>
 * <ul>
 * <li>The general recommendation is to set "sessionTransacted" to "true",
 * typically in combination with local database transactions triggered by the
 * listener implementation, through Spring's standard transaction facilities.
 * This will work nicely in Tomcat or in a standalone environment, often
 * combined with custom duplicate message detection (if it is unacceptable
 * to ever process the same message twice).
 * <li>Alternatively, specify a
 * {@link org.springframework.transaction.jta.JtaTransactionManager} as
 * "transactionManager" for a fully XA-aware JMS provider - typically when
 * running on a J2EE server, but also for other environments with a JTA
 * transaction manager present. This will give full "exactly-once" guarantees
 * without custom duplicate message checks, at the price of additional
 * runtime processing overhead.
 * </ul>
 *
 * <p>Note that it is also possible to specify a
 * {@link org.springframework.jms.connection.JmsTransactionManager} as external
 * "transactionManager", providing fully synchronized Spring transactions based
 * on local JMS transactions. The effect is similar to "sessionTransacted" set
 * to "true", the difference being that this external transaction management
 * will also affect independent JMS access code within the service layer
 * (e.g. based on {@link org.springframework.jms.core.JmsTemplate} or
 * {@link org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy}),
 * not just direct JMS Session usage in a {@link SessionAwareMessageListener}.
 *
 * @author Juergen Hoeller
 * @since 2.0
 * @see #setMessageListener
 * @see javax.jms.MessageListener
 * @see SessionAwareMessageListener
 * @see #handleListenerException
 * @see DefaultMessageListenerContainer
 * @see SimpleMessageListenerContainer
 * @see org.springframework.jms.listener.endpoint.JmsMessageEndpointManager
 */
public abstract class AbstractMessageListenerContainer extends AbstractJmsListeningContainer {

    private volatile Object destination;

    private volatile String messageSelector;

    private volatile Object messageListener;

    private boolean subscriptionDurable = false;

    private String durableSubscriptionName;

    private ExceptionListener exceptionListener;

    private ErrorHandler errorHandler;

    private boolean exposeListenerSession = true;

    private boolean acceptMessagesWhileStopping = false;


    /**
     * Set the destination to receive messages from.
     * <p>Alternatively, specify a "destinationName", to be dynamically
     * resolved via the {@link org.springframework.jms.support.destination.DestinationResolver}.
     * <p>Note: The destination may be replaced at runtime, with the listener
     * container picking up the new destination immediately (works e.g. with
     * DefaultMessageListenerContainer, as long as the cache level is less than
     * CACHE_CONSUMER). However, this is considered advanced usage; use it with care!
     * @see #setDestinationName(String)
     */
    public void setDestination(Destination destination) {
        Assert.notNull(destination, "'destination' must not be null");
        this.destination = destination;
        if (destination instanceof Topic && !(destination instanceof Queue)) {
            // Clearly a Topic: let's set the "pubSubDomain" flag accordingly.
            setPubSubDomain(true);
        }
    }

    /**
     * Return the destination to receive messages from. Will be <code>null</code>
     * if the configured destination is not an actual {@link Destination} type;
     * c.f. {@link #setDestinationName(String) when the destination is a String}.
     */
    public Destination getDestination() {
        return (this.destination instanceof Destination ? (Destination) this.destination : null);
    }

    /**
     * Set the name of the destination to receive messages from.
     * <p>The specified name will be dynamically resolved via the configured
     * {@link #setDestinationResolver destination resolver}.
     * <p>Alternatively, specify a JMS {@link Destination} object as "destination".
     * <p>Note: The destination may be replaced at runtime, with the listener
     * container picking up the new destination immediately (works e.g. with
     * DefaultMessageListenerContainer, as long as the cache level is less than
     * CACHE_CONSUMER). However, this is considered advanced usage; use it with care!
     * @param destinationName the desired destination (can be <code>null</code>)
     * @see #setDestination(javax.jms.Destination)
     */
    public void setDestinationName(String destinationName) {
        Assert.notNull(destinationName, "'destinationName' must not be null");
        this.destination = destinationName;
    }

    /**
     * Return the name of the destination to receive messages from.
     * Will be <code>null</code> if the configured destination is not a
     * {@link String} type; c.f. {@link #setDestination(Destination) when
     * it is an actual Destination}.
     */
    public String getDestinationName() {
        return (this.destination instanceof String ? (String) this.destination : null);
    }

    /**
     * Return a descriptive String for this container's JMS destination
     * (never <code>null</code>).
     */
    protected String getDestinationDescription() {
        return this.destination.toString();
    }

    /**
     * Set the JMS message selector expression (or <code>null</code> if none).
     * Default is none.
     * <p>See the JMS specification for a detailed definition of selector expressions.
     * <p>Note: The message selector may be replaced at runtime, with the listener
     * container picking up the new selector value immediately (works e.g. with
     * DefaultMessageListenerContainer, as long as the cache level is less than
     * CACHE_CONSUMER). However, this is considered advanced usage; use it with care!
     */
    public void setMessageSelector(String messageSelector) {
        this.messageSelector = messageSelector;
    }

    /**
     * Return the JMS message selector expression (or <code>null</code> if none).
     */
    public String getMessageSelector() {
        return this.messageSelector;
    }


    /**
     * Set the message listener implementation to register.
     * This can be either a standard JMS {@link MessageListener} object
     * or a Spring {@link SessionAwareMessageListener} object.
     * <p>Note: The message listener may be replaced at runtime, with the listener
     * container picking up the new listener object immediately (works e.g. with
     * DefaultMessageListenerContainer, as long as the cache level is less than
     * CACHE_CONSUMER). However, this is considered advanced usage; use it with care!
     * @throws IllegalArgumentException if the supplied listener is not a
     * {@link MessageListener} or a {@link SessionAwareMessageListener}
     * @see javax.jms.MessageListener
     * @see SessionAwareMessageListener
     */
    public void setMessageListener(Object messageListener) {
        checkMessageListener(messageListener);
        this.messageListener = messageListener;
        if (this.durableSubscriptionName == null) {
            this.durableSubscriptionName = getDefaultSubscriptionName(messageListener);
        }
    }

    /**
     * Return the message listener object to register.
     */
    public Object getMessageListener() {
        return this.messageListener;
    }

    /**
     * Check the given message listener, throwing an exception
     * if it does not correspond to a supported listener type.
     * <p>By default, only a standard JMS {@link MessageListener} object or a
     * Spring {@link SessionAwareMessageListener} object will be accepted.
     * @param messageListener the message listener object to check
     * @throws IllegalArgumentException if the supplied listener is not a
     * {@link MessageListener} or a {@link SessionAwareMessageListener}
     * @see javax.jms.MessageListener
     * @see SessionAwareMessageListener
     */
    protected void checkMessageListener(Object messageListener) {
        if (!(messageListener instanceof MessageListener ||
                messageListener instanceof SessionAwareMessageListener)) {
            throw new IllegalArgumentException(
                    "Message listener needs to be of type [" + MessageListener.class.getName() +
                    "] or [" + SessionAwareMessageListener.class.getName() + "]");
        }
    }

    /**
     * Determine the default subscription name for the given message listener.
     * @param messageListener the message listener object to check
     * @return the default subscription name
     * @see SubscriptionNameProvider
     */
    protected String getDefaultSubscriptionName(Object messageListener) {
        if (messageListener instanceof SubscriptionNameProvider) {
            return ((SubscriptionNameProvider) messageListener).getSubscriptionName();
        }
        else {
            return messageListener.getClass().getName();
        }
    }

    /**
     * Set whether to make the subscription durable. The durable subscription name
     * to be used can be specified through the "durableSubscriptionName" property.
     * <p>Default is "false". Set this to "true" to register a durable subscription,
     * typically in combination with a "durableSubscriptionName" value (unless
     * your message listener class name is good enough as subscription name).
     * <p>Only makes sense when listening to a topic (pub-sub domain).
     * @see #setDurableSubscriptionName
     */
    public void setSubscriptionDurable(boolean subscriptionDurable) {
        this.subscriptionDurable = subscriptionDurable;
    }

    /**
     * Return whether to make the subscription durable.
     */
    public boolean isSubscriptionDurable() {
        return this.subscriptionDurable;
    }

    /**
     * Set the name of a durable subscription to create. To be applied in case
     * of a topic (pub-sub domain) with subscription durability activated.
     * <p>The durable subscription name needs to be unique within this client's
     * JMS client id. Default is the class name of the specified message listener.
     * <p>Note: Only 1 concurrent consumer (which is the default of this
     * message listener container) is allowed for each durable subscription.
     * @see #setSubscriptionDurable
     * @see #setClientId
     * @see #setMessageListener
     */
    public void setDurableSubscriptionName(String durableSubscriptionName) {
        this.durableSubscriptionName = durableSubscriptionName;
    }

    /**
     * Return the name of a durable subscription to create, if any.
     */
    public String getDurableSubscriptionName() {
        return this.durableSubscriptionName;
    }

    /**
     * Set the JMS ExceptionListener to notify in case of a JMSException thrown
     * by the registered message listener or the invocation infrastructure.
     */
    public void setExceptionListener(ExceptionListener exceptionListener) {
        this.exceptionListener = exceptionListener;
    }

    /**
     * Return the JMS ExceptionListener to notify in case of a JMSException thrown
     * by the registered message listener or the invocation infrastructure, if any.
     */
    public ExceptionListener getExceptionListener() {
        return this.exceptionListener;
    }

    /**
     * Set an ErrorHandler to be invoked in case of any uncaught exceptions thrown
     * while processing a Message. By default there will be <b>no</b> ErrorHandler
     * so that error-level logging is the only result.
     */
    public void setErrorHandler(ErrorHandler errorHandler) {
        this.errorHandler = errorHandler;
    }

    /**
     * Set whether to expose the listener JMS Session to a registered
     * {@link SessionAwareMessageListener} as well as to
     * {@link org.springframework.jms.core.JmsTemplate} calls.
     * <p>Default is "true", reusing the listener's {@link Session}.
     * Turn this off to expose a fresh JMS Session fetched from the same
     * underlying JMS {@link Connection} instead, which might be necessary
     * on some JMS providers.
     * <p>Note that Sessions managed by an external transaction manager will
     * always get exposed to {@link org.springframework.jms.core.JmsTemplate}
     * calls. So in terms of JmsTemplate exposure, this setting only affects
     * locally transacted Sessions.
     * @see SessionAwareMessageListener
     */
    public void setExposeListenerSession(boolean exposeListenerSession) {
        this.exposeListenerSession = exposeListenerSession;
    }

    /**
     * Return whether to expose the listener JMS {@link Session} to a
     * registered {@link SessionAwareMessageListener}.
     */
    public boolean isExposeListenerSession() {
        return this.exposeListenerSession;
    }

    /**
     * Set whether to accept received messages while the listener container
     * in the process of stopping.
     * <p>Default is "false", rejecting such messages through aborting the
     * receive attempt. Switch this flag on to fully process such messages
     * even in the stopping phase, with the drawback that even newly sent
     * messages might still get processed (if coming in before all receive
     * timeouts have expired).
     * <p><b>NOTE:</b> Aborting receive attempts for such incoming messages
     * might lead to the provider's retry count decreasing for the affected
     * messages. If you have a high number of concurrent consumers, make sure
     * that the number of retries is higher than the number of consumers,
     * to be on the safe side for all potential stopping scenarios.
     */
    public void setAcceptMessagesWhileStopping(boolean acceptMessagesWhileStopping) {
        this.acceptMessagesWhileStopping = acceptMessagesWhileStopping;
    }

    /**
     * Return whether to accept received messages while the listener container
     * in the process of stopping.
     */
    public boolean isAcceptMessagesWhileStopping() {
        return this.acceptMessagesWhileStopping;
    }

    protected void validateConfiguration() {
        if (this.destination == null) {
            throw new IllegalArgumentException("Property 'destination' or 'destinationName' is required");
        }
        if (isSubscriptionDurable() && !isPubSubDomain()) {
            throw new IllegalArgumentException("A durable subscription requires a topic (pub-sub domain)");
        }
    }


    //-------------------------------------------------------------------------
    // Template methods for listener execution
    //-------------------------------------------------------------------------

    /**
     * Execute the specified listener,
     * committing or rolling back the transaction afterwards (if necessary).
     * @param session the JMS Session to operate on
     * @param message the received JMS Message
     * @see #invokeListener
     * @see #commitIfNecessary
     * @see #rollbackOnExceptionIfNecessary
     * @see #handleListenerException
     */
    protected void executeListener(Session session, Message message) {
        try {
            doExecuteListener(session, message);
        }
        catch (Throwable ex) {
            handleListenerException(ex);
        }
    }

    /**
     * Execute the specified listener,
     * committing or rolling back the transaction afterwards (if necessary).
     * @param session the JMS Session to operate on
     * @param message the received JMS Message
     * @throws JMSException if thrown by JMS API methods
     * @see #invokeListener
     * @see #commitIfNecessary
     * @see #rollbackOnExceptionIfNecessary
     * @see #convertJmsAccessException
     */
    protected void doExecuteListener(Session session, Message message) throws JMSException {
        if (!isAcceptMessagesWhileStopping() && !isRunning()) {
            if (logger.isWarnEnabled()) {
                logger.warn("Rejecting received message because of the listener container " +
                        "having been stopped in the meantime: " + message);
            }
            rollbackIfNecessary(session);
            throw new MessageRejectedWhileStoppingException();
        }
        try {
            invokeListener(session, message);
        }
        catch (JMSException ex) {
            rollbackOnExceptionIfNecessary(session, ex);
            throw ex;
        }
        catch (RuntimeException ex) {
            rollbackOnExceptionIfNecessary(session, ex);
            throw ex;
        }
        catch (Error err) {
            rollbackOnExceptionIfNecessary(session, err);
            throw err;
        }
        commitIfNecessary(session, message);
    }

    /**
     * Invoke the specified listener: either as standard JMS MessageListener
     * or (preferably) as Spring SessionAwareMessageListener.
     * @param session the JMS Session to operate on
     * @param message the received JMS Message
     * @throws JMSException if thrown by JMS API methods
     * @see #setMessageListener
     */
    protected void invokeListener(Session session, Message message) throws JMSException {
        Object listener = getMessageListener();
        if (listener instanceof SessionAwareMessageListener) {
            doInvokeListener((SessionAwareMessageListener) listener, session, message);
        }
        else if (listener instanceof MessageListener) {
            doInvokeListener((MessageListener) listener, message);
        }
        else if (listener != null) {
            throw new IllegalArgumentException(
                    "Only MessageListener and SessionAwareMessageListener supported: " + listener);
        }
        else {
            throw new IllegalStateException("No message listener specified - see property 'messageListener'");
        }
    }

    /**
     * Invoke the specified listener as Spring SessionAwareMessageListener,
     * exposing a new JMS Session (potentially with its own transaction)
     * to the listener if demanded.
     * @param listener the Spring SessionAwareMessageListener to invoke
     * @param session the JMS Session to operate on
     * @param message the received JMS Message
     * @throws JMSException if thrown by JMS API methods
     * @see SessionAwareMessageListener
     * @see #setExposeListenerSession
     */
    @SuppressWarnings("unchecked")
    protected void doInvokeListener(SessionAwareMessageListener listener, Session session, Message message)
            throws JMSException {

        Connection conToClose = null;
        Session sessionToClose = null;
        try {
            Session sessionToUse = session;
            if (!isExposeListenerSession()) {
                // We need to expose a separate Session.
                conToClose = createConnection();
                sessionToClose = createSession(conToClose);
                sessionToUse = sessionToClose;
            }
            // Actually invoke the message listener...
            listener.onMessage(message, sessionToUse);
            // Clean up specially exposed Session, if any.
            if (sessionToUse != session) {
                if (sessionToUse.getTransacted() && isSessionLocallyTransacted(sessionToUse)) {
                    // Transacted session created by this container -> commit.
                    JmsUtils.commitIfNecessary(sessionToUse);
                }
            }
        }
        finally {
            JmsUtils.closeSession(sessionToClose);
            JmsUtils.closeConnection(conToClose);
        }
    }

    /**
     * Invoke the specified listener as standard JMS MessageListener.
     * <p>Default implementation performs a plain invocation of the
     * <code>onMessage</code> method.
     * @param listener the JMS MessageListener to invoke
     * @param message the received JMS Message
     * @throws JMSException if thrown by JMS API methods
     * @see javax.jms.MessageListener#onMessage
     */
    protected void doInvokeListener(MessageListener listener, Message message) throws JMSException {
        listener.onMessage(message);
    }

    /**
     * Perform a commit or message acknowledgement, as appropriate.
     * @param session the JMS Session to commit
     * @param message the Message to acknowledge
     * @throws javax.jms.JMSException in case of commit failure
     */
    protected void commitIfNecessary(Session session, Message message) throws JMSException {
        // Commit session or acknowledge message.
        if (session.getTransacted()) {
            // Commit necessary - but avoid commit call within a JTA transaction.
            if (isSessionLocallyTransacted(session)) {
                // Transacted session created by this container -> commit.
                JmsUtils.commitIfNecessary(session);
            }
        }
        else if (message != null && isClientAcknowledge(session)) {
            message.acknowledge();
        }
    }

    /**
     * Perform a rollback, if appropriate.
     * @param session the JMS Session to rollback
     * @throws javax.jms.JMSException in case of a rollback error
     */
    protected void rollbackIfNecessary(Session session) throws JMSException {
        if (session.getTransacted() && isSessionLocallyTransacted(session)) {
            // Transacted session created by this container -> rollback.
            JmsUtils.rollbackIfNecessary(session);
        }
    }

    /**
     * Perform a rollback, handling rollback exceptions properly.
     * @param session the JMS Session to rollback
     * @param ex the thrown application exception or error
     * @throws javax.jms.JMSException in case of a rollback error
     */
    protected void rollbackOnExceptionIfNecessary(Session session, Throwable ex) throws JMSException {
        try {
            if (session.getTransacted() && isSessionLocallyTransacted(session)) {
                // Transacted session created by this container -> rollback.
                if (logger.isDebugEnabled()) {
                    logger.debug("Initiating transaction rollback on application exception", ex);
                }
                JmsUtils.rollbackIfNecessary(session);
            }
        }
        catch (IllegalStateException ex2) {
            logger.debug("Could not roll back because Session already closed", ex2);
        }
        catch (JMSException ex2) {
            logger.error("Application exception overridden by rollback exception", ex);
            throw ex2;
        }
        catch (RuntimeException ex2) {
            logger.error("Application exception overridden by rollback exception", ex);
            throw ex2;
        }
        catch (Error err) {
            logger.error("Application exception overridden by rollback error", ex);
            throw err;
        }
    }

    /**
     * Check whether the given Session is locally transacted, that is, whether
     * its transaction is managed by this listener container's Session handling
     * and not by an external transaction coordinator.
     * <p>Note: The Session's own transacted flag will already have been checked
     * before. This method is about finding out whether the Session's transaction
     * is local or externally coordinated.
     * @param session the Session to check
     * @return whether the given Session is locally transacted
     * @see #isSessionTransacted()
     * @see org.springframework.jms.connection.ConnectionFactoryUtils#isSessionTransactional
     */
    protected boolean isSessionLocallyTransacted(Session session) {
        return isSessionTransacted();
    }

    /**
     * Handle the given exception that arose during listener execution.
     * <p>The default implementation logs the exception at error level,
     * not propagating it to the JMS provider - assuming that all handling of
     * acknowledgement and/or transactions is done by this listener container.
     * This can be overridden in subclasses.
     * @param ex the exception to handle
     */
    protected void handleListenerException(Throwable ex) {
        if (ex instanceof MessageRejectedWhileStoppingException) {
            // Internal exception - has been handled before.
            return;
        }
        if (ex instanceof JMSException) {
            invokeExceptionListener((JMSException) ex);
        }
        if (isActive()) {
            // Regular case: failed while active.
            // Invoke ErrorHandler if available.
            invokeErrorHandler(ex);
        }
        else {
            // Rare case: listener thread failed after container shutdown.
            // Log at debug level, to avoid spamming the shutdown log.
            logger.debug("Listener exception after container shutdown", ex);
        }
    }

    /**
     * Invoke the registered JMS ExceptionListener, if any.
     * @param ex the exception that arose during JMS processing
     * @see #setExceptionListener
     */
    protected void invokeExceptionListener(JMSException ex) {
        ExceptionListener exceptionListener = getExceptionListener();
        if (exceptionListener != null) {
            exceptionListener.onException(ex);
        }
    }

    /**
     * Invoke the registered ErrorHandler, if any. Log at error level otherwise.
     * @param ex the uncaught error that arose during JMS processing.
     * @see #setErrorHandler
     */
    protected void invokeErrorHandler(Throwable ex) {
        if (this.errorHandler != null) {
            this.errorHandler.handleError(ex);
        }
        else if (logger.isWarnEnabled()) {
            logger.warn("Execution of JMS message listener failed, and no ErrorHandler has been set.", ex);
        }
    }


    /**
     * Internal exception class that indicates a rejected message on shutdown.
     * Used to trigger a rollback for an external transaction manager in that case.
     */
    private static class MessageRejectedWhileStoppingException extends RuntimeException {

    }

}
			
			

Browsed Source: [clear]