我正在使用Apache Camel和Spring从我的Java服务发送消息。如果交换发生任何错误,我需要重置 JMS连接。我使用下面的代码来实现我的目标。
try
{
producerTemplate.sendBody(endPoint, bytes);
}
catch (final RuntimeCamelException exception)
{
LOGGER.error("Exception occured in sendBody", exception.getMessage(), exception);
handleError(); // handle error here.
}
在camel上下文中,我使用异常监听器定义了CachingConnectionFactory,并使 reconnectOnException = true
<bean id="testConnectionFactory" class="org.apache.qpid.jms.JmsConnectionFactory">
<property name="username" value="${user.name}" />
<property name="password" value="${user.password}" />
<property name="clientID" value="${host.address}" />
<property name="remoteURI"
value="amqp://${host.address}:${host.port}?jms.clientID=${host.address}?jms.username=${user.name}&jms.password=${user.password}&jms.redeliveryPolicy.maxRedeliveries=${message.retry.count}&amqp.saslMechanisms=PLAIN" />
</bean>
<bean id="testCachingConnectionFactory"
class="org.springframework.jms.connection.CachingConnectionFactory">
<property name="exceptionListener" ref="testCachingConnectionFactory" />
<property name="targetConnectionFactory" ref="testConnectionFactory" />
<property name="reconnectOnException" value="true" />
</bean>
就我而言, JMSSecurityException 从下面一行的try块抛出
producerTemplate.sendBody(endPoint, bytes)
执行进入catch块,但是即使定义了exceptionListener,也从不调用SingleConnectionFactory的OnException()。我们的想法是最终调用resetConnection()(在OnException内部)来重置JMS连接。
答案 0 :(得分:2)
实施ExceptionListener
并将异常监听器定义作为属性添加到spring连接工厂testCachingConnectionFactory
。
例如,创建一个异常监听器类(组件)JmsExceptionListener
:
public class JmsExceptionListener implements ExceptionListener {
@Override
public void onException(JMSException exception) {
// what ever you wanna do here!
}
}
然后为JmsExceptionListener
添加bean定义:
<bean id="jmsExceptionListener" class="JmsExceptionListener"></bean>
然后将定义添加为异常侦听器属性:
<property name="exceptionListener" ref="jmsExceptionListener"/>
而不是您在配置中使用的内容:
<property name="exceptionListener" ref="testCachingConnectionFactory" />