Camel: retrieving object in activemq message
问题 Is there a way to put object in message in camel route process. lets say i have a route from("direct:send") .process(queueProcessor) .to(activemqEndPoint) and in the queueProcessor i am putting an object in the exchange, Now, I have a listener which listens to activemqEndPoint(queue) public void onMessage(Message message) { try { //here i want to get the message i set it in the exchange } Any help?? THanks in advance 回答1: trying this worked for me from("direct:send") .process(queueProcessor)