I'm trying to use camel routing more dinamically, but i had little trouble. (I'm using camel-core_2.9.0)
I'm using transform method in the route definition
Object methodclass;
String methodname;
context.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
// TODO Auto-generated method stub
from("vm:internal0").
transform().method(methodclass, methodname).
to("vm:receiver");
}
});
Now if have this assignment (assuming i've TransformLogic class with "transform" method)
methodclass = new TransformLogic();
methodname = "transform";
i haven't problem, but if i have this assignment
methodclass = TransformLogic.class;
methodname = "transform";
.
.
Camel thrown`
org.apache.camel.FailedToCreateRouteException: Failed to create route route3 at: >>> Transform[bean{java.lang.Class, method=transform}] <<< in route: Route[[From[vm:internal0]] -> [Transform[bean{java.lang.Clas... because of org.apache.camel.component.bean.MethodNotFoundException: Method with name: transform not found on bean: class core.compoundterm.primitiveterm.DefaultTransformLogic of type: java.lang.Class
Where i'm wronging? Thanks