Getting exception while starting my application

Getting exception spring boot starting application

Caused by: org.camunda.bpm.engine.ProcessEngineException: ENGINE-09005 Could not parse BPMN process. Errors:

  • One of the attributes ‘class’, ‘delegateExpression’, ‘type’, or ‘expression’ is mandatory on sendTask. | bpmn/exception.bpmn | line 25 | column 63

Have you checked that the send task in your Bpmn model has an implementation? Basically it must have a class or an expression etc to actually perform the send logic. From an implementation perspective, it’s really very similar to a service task…
Rob

1 Like

Yes found the exception. It was related to the class name “NotifyOperator” instead of “NotifyUser”