spring integration - jms adapter launch two jms consumer -


i have problem int-jms:inbound-channel-adapter, when start application see in activemq webadmin have 2 consumer queue.

<int-jms:inbound-channel-adapter          id="jmsadapter"         acknowledge="transacted"         destination-name="${destinationname}"         connection-factory="cachedconnectionfactory"         channel="inboundchannel"         auto-startup="true" >     <int:poller fixed-delay="100" ></int:poller> </int-jms:inbound-channel-adapter> 

somme thing wrong in conf?

problem org.springframework.jms.connection.cachingconnectionfactory create multiple session, , 1 consumer per session . have 3 consumers same queue.

to resolve use cachedconsumer à false.


Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -