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 action that we expect to be done by Camunda
Tag: bpmn
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 the validation
How to disable activiti auto deployment on Spring Boot project
I have a Spring Boot project where I used activiti-spring-boot-starter-basic 5.22 dependency. But whenever I am running the Spring Boot app the processes in src/main/resources/processes will always get deploy if it has been changed and I don’t want it to deploy. How can I disable auto deploy on Spring Boot? Answer You can add the following properties to your application.properties