Error reported in flowable initialization table
When the flowable initializes the table, it always reports an error
mismatch: library version is '6.6.0.0', db version is 5.99.0.0 Hint: Set <property name="databaseSchemaUpdate" to value="true" or value="create-drop" (use create-drop for testing only!) in bean processEngineConfiguration in flowable.cfg.xml for
The database is MySQL flowa ...
Posted by steve490 on Sat, 26 Feb 2022 07:26:41 +0100
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 ...
Posted by chrisleon on Wed, 12 Jan 2022 20:25:09 +0100
Flowable introductory series Article 72 - JPA advanced usage
1. Query JPA process variables
You can query ProcessInstances and Executions with specific JPA entities as variable values. Note that only variableValueEquals(name, entity) supports ProcessInstanceQuery and ExecutionQuery for JPA entities. The methods variableValueNotEquals, variableValueGreaterThan, variableValueGreaterThan orequal, variableV ...
Posted by RestlessThoughts on Wed, 01 Dec 2021 02:28:45 +0100
Introduction to Flowable series article 21 - Basic Flowable concepts II
1. Start a process instance
We have now created a process definition for our business process. From such a process definition, we can create process instances. In this case, a process instance corresponds to creating and validating a single financial report for a specific month. All process instances in any month share the same process definit ...
Posted by 051119 on Mon, 11 Oct 2021 06:23:17 +0200