I want to pass message from one queue to other without any processing - how to configure in spring io ?
Asked
Active
Viewed 474 times
1 Answers
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
-
thanks Russell a lot ... how to fix the message read count .. I want to stop after 50 message read ? – user3467346 Apr 12 '14 at 02:07