0

I want to pass message from one queue to other without any processing - how to configure in spring io ?

user3467346
  • 47
  • 10

1 Answers1

0
<int:jms-message-driven-channel-adapter channel="foo" ... />

<int:channel id="foo" />

<int:jms-outbound-channel-adapter channel="foo" ... />

See the documentation for full details.

Gary Russell
  • 166,535
  • 14
  • 146
  • 179