I have a spring boot application with camel and camunda integration.
https://github.com/larbigj/camunda-camel-boot
I can start a camunda process with a camel route but when I try to call a camel route from the
process I get an exception org.camunda.bpm.engine.impl.javax.el.PropertyNotFoundException: Cannot find property camel
A bean with name camel as mentioned in the documentation is available
@bean(name = "camel")
public CamelServiceImpl camel() {
CamelServiceImpl camelServiceImpl = new CamelServiceImpl();
camelServiceImpl.setCamelContext(camelContext);
camelServiceImpl.setProcessEngine(processEngine);
return camelServiceImpl;
}
Regards
Jörg