Skip to main content
The camunda-engine-cdi and camunda-engine-cdi-jakarta libraries expose CDI beans via Expression Language, using a custom resolver. This makes it possible to reference beans from the process:
Where “authorizingManager” could be a bean provided by a producer method:
We can use the same feature to call a business method of an EJB in a service task, using the camunda:expression="${myEjb.method()}"-extension. Note that this requires a @Named-annotation on the MyEjb-class.