Camunda Conditional Events example

Camunda Conditional Events: defines an event that is triggered when a given condition is evaluated to true. It can be used as the starting event, intermediate event and boundary event of the event sub process. Start and boundary events can be interrupted and uninterrupted. In camunda, Conditional Events are triggered with the help of process va ...

Posted by SoaringUSAEagle on Sat, 12 Feb 2022 05:38:53 +0100

Flowable actual form and process variables

1, Process variables  when a process instance executes step by step, some data needs to be saved and used. In Flowable, these data are called variable s.  process instances can hold variables called process variables.   in order to use efficiency, Flowable divides variables into two types: runtime variables and historical va ...

Posted by Tubby on Wed, 12 Jan 2022 22:11:44 +0100

Deployment management of Flowable actual combat process

1, Version of process definition  when deploying a process definition, the process definition in the database will look like this:idkeynameversionmyProcess:1:676myProcessMy important process1   if we deploy an updated version of the same process (for example, modify some user tasks) and keep the id of the process definition uncha ...

Posted by seby on Mon, 10 Jan 2022 15:42:14 +0100

Flowable Combat 2 - integrated Springboot

1. Create a Springboot project  open IDEA and create a new Springboot project through file - > New - > Project... - > spring initializer  in the next interface, fill in the project Name and select 8 for JDK  next, select Springboot 2.6.2  click Finish  generate an empty Springboot project, POM XML file content: ...

Posted by petrosa on Sat, 08 Jan 2022 13:10:49 +0100