from("jms:myqueue").to("bean:eventListener?methodName=process").recipientList(???)..
My event Listener returns a string of comma delimiter route URI, say, jms:q1,
jms:q2, etc...and now I would like to further route the event to all the q1,
q2, etc...
q1, q2, come from database keyed by the event...
Is recipientList the right way? How?
Thanks...
