java - Copy a message from one queue to another queue -
i have created 2 queue in "activemq". 1 "master" , "audit".
all message 1st came in "master" queue. want copy messages came "master" queue automatically copy "audit" queue.
i want copy not move messages "master" "audit" queue.
is there config in "activemq" or "camel" achieve requirement?
thanks
i guess looking wire tap pattern (https://camel.apache.org/wire-tap.html). example:
<route> <from uri="jms:master_queue"/> <wiretap uri="jms:audit_queue"/> <to uri="to_do_something"/> </route>
Comments
Post a Comment