When I use Spring to listen to JMS messages, I receievd the above error.

I am wondering how to add an Errorhandler into the JMS listener?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

There is a property on AbstractMessageListenerContainer:

<bean id="listener" class="org.springframework.jms.listener.DefaultMessageListenerContainer">
    <property name="errorHandler" ref="someHandler"/>
    <property name="destinationName" value="someQueue"/>
    <property name="connectionFactory" ref="connectionFactory"/>
</bean>

Where someHandler is a bean implementing ErrorHandler:

@Service
public class SomeHandler implements ErrorHandler {

    @Override
    public void handleError(Throwable t) {
        log.error("Error in listener", t);
    }
}

However note that according to the documentation:

The default behavior of this message listener [...] will log any such exception at the error level. [...] However, if error handling is necessary, then any implementation of the ErrorHandler strategy may be provided to the setErrorHandler(ErrorHandler) method.

Check out your logs, maybe the exception is already logged?

link|improve this answer
thanks for your answer. BTW, why use @Service for this bean? – user705414 Jan 19 at 7:58
Looks like the exception is logged using WARN level by default. – user705414 Jan 19 at 7:58
@user705414: this seems to be a mistake in the documentation: AbstractMessageListenerContainer.invokeErrorHandler() indeed uses log.warn(). I use @Service to autodetect the bean, of course any way to declare the error handler bean is fine. – Tomasz Nurkiewicz Jan 19 at 8:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.