My objective is to use Camel along with its JMS component.
The route config looks like below-
from("jms:queue:test").to(mybean)
I would like to add the option of kind 'parameter' and type 'object' to this route -for example the option 'jmsMessageType'.
I saw some other posts that talks about using setProperty() on route definition but I could not find a definite answer. Options of type 'string' and numbers can be appended to the URI but not objects.
JMS has an option of taskExecutor but how can i add an instance of this to URI for routing.