How do I get JMS headers on my spring integration jms inbound channel ? I have not found much information on the reference.

Thanks and regards.

link|improve this question

40% accept rate
feedback

1 Answer

Take a look at the DefaultJmsHeaderMapper class. It is responsible (by default) for mapping to and from JMS messages into Spring Integration messages. Once you define appropriate rules, JMS message headers will be visible as any other SI message headers (message.getHeaders()).

link|improve this answer
I got this. But how do I plug it on my inbound channel ? Using only XML configuration? – Mikhas Feb 14 at 16:16
You don't plug it into channel but into inbound channel adapter. If you use jms:message-driven-channel-adapter just set its header-mapper attribute in the XML. – Piotrek De Feb 15 at 8:26
feedback

Your Answer

 
or
required, but never shown

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