How to use sendBodyAndProperty in camel – Apache
I have a processor with below code ProducerTemplate.sendBodyAndProperty("direct:endpoint", body, property, propertyValue) I need to use propertyValue in the below route() <route> <from uri="direct:endpoint" /> <to uri="file:/?fileName=${propertyValue}" /> </route> Please advice