Questions tagged [flowable]

Flowable is a light-weight business process engine written in Java. Use this tag for questions related to Flowable usage and workflows.

The Flowable process engine allows you to deploy BPMN 2.0 process definitions (an industry XML standard for defining processes), creating process instances of those process definitions, running queries, accessing active or historical process instances and related data. It can run as independent engine or as a service and can be integrated with Spring and Spring boot. It even supports DMN decision tables and CMMN case management engines.

Flowable is a fork of Activiti (registered trademark of Alfresco).

Official User Guide
GitHub page

154 questions
0
votes
1 answer

Integration test in Spring application using Flowable

I need to write some integration tests for my Spring application using Flowable. My tests must include the application BPMN workflow logic. My question is - should I start and deploy normal Flowable engine during my tests as I do in the application?…
keksimus.maximus
  • 303
  • 3
  • 10
0
votes
1 answer

Tomcat LifeCycle exception LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext

I've looked around this problem but I do not know how to fix it... Many answers talk about servlet configuration error, but do not say how to fix it and what to change. My catalina log file looks like this: org.apache.catalina.LifecycleException:…
Usr
  • 2,628
  • 10
  • 51
  • 91
0
votes
1 answer

How to modify mail task data with Spring Boot and Flowable

I created mail task configuration
cwiq
  • 105
  • 2
  • 15
0
votes
1 answer

How to perform the Efficient UnDeployment process in Flowable

I'm New to Flowable. I tried to create the BPMN Deployment to MYSQL and it's getting deployed successfully. But In UnDeployment process i'm storing all the deployments in a List then i'm performing the undeployment based on the My Criteria, like if…
AVINASH M
  • 487
  • 3
  • 7
  • 19
0
votes
1 answer

Flowable: how to pass parameters to listener

I am pretty new in Flowable, so I have a question. I would like to pass some flags to my listener. The part of bpmn looks like this:
Code ur Cookie
  • 43
  • 1
  • 1
  • 4
0
votes
1 answer

How to specify process duration - flowable

How can I specify process duration with Flowable? If from startEvent elapse e.g. 30 days and process will not be finished it should be closed. I use Spring Boot with flowable. It should be specified in diagram or in code?
cwiq
  • 105
  • 2
  • 15
0
votes
3 answers

Access to JSON values of array (Flowable )

Im creating a flow that calls a web servcice and then it reads and show the values. But can't view values of result.myArray[0].SECCION. When I look in debug mode it has values but flowable cant show them Screenshot 1: Only view json obj Screenshot…
Ivan
  • 1
  • 3
0
votes
0 answers

Read Forms from BAR file - Flowable in code -

I need an example of usign FormEngine. To be more especific.... I'm executing code below - but there’s no forms found in my BAR file :( The BAR file was exported from Flowable Modeler and it contains one form and one process and app. Maybe there's…
Ivan
  • 1
  • 3
0
votes
1 answer

Angular Downloading a file using contenturl with Basic Authentication

I have a contentUrl when user clicks on that,file should be downloaded. If I try to browse the contentUrl in the browser it asks for Userid and password.I believe this is Basic Authentication.I dont want user to enter UserId and Password so I am…
reddy
  • 173
  • 1
  • 4
  • 9
0
votes
0 answers

Caused by: java.nio.charset.UnsupportedCharsetException - intellij

The following error I'm getting while sending request body to the RestController in my spiring-boot application, the solutions available in the forum suggest the issue is related to IDE, but I couldn't find any QAs related to intellij, Caused by:…
user2582360
  • 55
  • 3
  • 13
0
votes
1 answer

Create a custom Flowable task

I have a requirement where we need to create the custom Flowable Task which have added arguments and hard-coded classes. To do a specific task. Can anyone help have created such a task? Also, it is advisable to create the task with hard-coded class…
0
votes
1 answer

Flowable not emitting when database changes

In Room Database i have an object (User) with id "1" and my DAO is returning a Flowable of this object. After subscribing I call editUser() function. @Query ("SELECT * FROM User Where id=:id ") Flowable getUser(String id); @Update void…
Android14
  • 1,045
  • 1
  • 11
  • 18
0
votes
1 answer

How to disable db migration (liquibase migration) from flowable docker images?

I am using Docker images to host flowable. DB driver is postgres. When we start the IDM and REST, it runs liquibase script to create db tables. Since default configuration is drop-create in databaseSchemaUpdate in code base, it is very difficult to…
Swapnil B.
  • 120
  • 13
0
votes
1 answer

flowable integration break jhipster maven integration tests

I have created a jhipster micro service with maven and add some entities using import-jdl. Everything was working perfectly fine with maven integration tests automatically generated. Now I would like to integrate flowable and after adding…
0
votes
1 answer

Spring Boot 2.0.2 + Flowable 6.3.1 Process Deployment

I am trying to integrate Spring Boot 2.0.2 with Flowable 6.3.1. and running into a problem where I am unable to deploy a process one-task-process.bpmn20.xml from the resources/processes/ folder. The XML file is not being picked up and the error…
Sunil Kosuri
  • 99
  • 1
  • 15
1 2 3
10
11