Does anybody have an idea what we can do about this?

Am 18.01.2014 14:12, schrieb Thorsten Höger:
> Hi,
>
> We use ActiveMQ 5.9.0 and are getting warn logs every 30 minutes in all our 
> applications
> using Spring ListenerContainers
>
> WARN crest Sat Jan 18 13:16:00 CET 2014
> org.springframework.jms.listener.DefaultMessageListenerContainer Setup of JMS 
> message
> listener invoker failed for destination 'pool.client' - trying to recover. 
> Cause: The
> Session is closed
>
> Our Spring config is:
>
> <bean id="jmsConnectionFactory" 
> class="org.apache.activemq.ActiveMQConnectionFactory">
>         <property name="brokerURL">
>             <value>${broker.url}</value>
>         </property>
> </bean>
> <bean id="jmsFactory" class="org.apache.activemq.pool.PooledConnectionFactory"
> destroy-method="stop">
>         <property name="connectionFactory">
>             <ref local="jmsConnectionFactory" />
>         </property>
>         <property name="createConnectionOnStartup" value="true" />
>         <property name="idleTimeout" value="0" />
>         <property name="maxConnections" value="3" />
>         <property name="maximumActiveSessionPerConnection" value="100" />
>         <property name="timeBetweenExpirationCheckMillis" value="30000" />
>         <property name="blockIfSessionPoolIsFull" value="false" />
> </bean>
> <jms:listener-container destination-type="topic" container-type="default"
> connection-factory="jmsFactory" acknowledge="auto">
>         <jms:listener destination="pool.client" ref="rfqMessageListener" 
> method="onMessage" />
> </jms:listener-container>
>
> Is there anything we can do about this?
>
> Regards,
> Thorsten Höger

Reply via email to