Apache Camel default data format for a component
How to set default data format for a component in Apache Camel? I have a number of routes interacting with different ActiveMQ queues. At the moment all of them look like from("...") .process(...) .marshal().json() // (1) .to("activemq:queue:..."); or from("activemq:queue:...") .unmarshal().json()…