I have a process in Camunda that doesn’t have any user tasks. Iy has only some service tasks. I want to set a transient Object variable and then get in several tasks and manipulate it but Camunda forces me to make it implement the Serializable interface. My code is: but get the following exception: Is t…
Tag: camunda
How to terminate Camunda running process?
Have an existing bpmn process that already does some work: processes received payload; triggers sub-process; creates a few task for manual user processing; etc. And now I need to find a way how to stop/terminate/cancel running workflow (I am not sure which action is preferable in terms of Camunda) because the…
Spring Boot 2 datasource by configuration does not work
I have an application.yml(!) for the configuration containing the following: Which gives me the errormessage: Doing it this way works: Ideas? 🙂 Answer Rename driverClassName to driver-class-name since Kebab case is preferred over Camel case in Spring Boot Auto Configuration properties. If that doesn’t h…
Java – Camunda BPMN model API: how to save valid xml?
I’m building some test BPMN 2.0 models and saving them to xml files, in a Java project, by following the examples provided by the official doc, in this case the example 2. I imported the lib in my pom like below: and this is my test class, following the example 2: Here the generated BPMN 2.0 xml Altough…