picturised.. I know that it is possible to call routes from from different RouteContext xml,
How do I achieve it in hybrid manner, for an instance..
<route id=A>
<from uri="direct:A"/>
<to uri="bean:someprocess....."/>
<to uri="direct:endp_inside_routeBuilder"/>
<route id=B>
<from uri="direct:A"/>
<to uri="bean:routeBuilder?method=routeBuilderMethod"/>
<to uri="mock:endp"/>
is it possible to route to the consumer inside the bean...!
or is it possible to import the routeContext/route configured in Spring into the JavaDSL ?..