1,271 questions
0
votes
0
answers
54
views
Activiti Spring Boot autodeployment creating new process definition on each startup
We're using activit spring boot starter. Almost all of the processes are created and edited through modeler and REST api; which means a new deployment is created only when there are some changes.
...
0
votes
0
answers
55
views
How to set the default ExpressionFactoryImpl
I recently updated from WildFly 25 (do not have those problems there) to WildFly 35.
Usually when a bean is not found, the exception looks like this:
Target Unreachable, identifier 'mailFeedback' ...
0
votes
0
answers
45
views
activiti - get TaskId from DelegateExecution
I've tried:
log.info("getTaskId-2 : " + processEngine.getHistoryService()
.createHistoricProcessInstanceQuery()
.processInstanceId(...
1
vote
1
answer
61
views
Alfresco Process Services override DbSqlSessionFactory?
I am using Alfresco Process Services 24.2
Spring version - 6.1.5
I have overridden DbSqlSessionFactory in my custom code using below code
CustomDbSqlSessionFactory
package com.activiti.extension.bean....
0
votes
1
answer
355
views
Injection issue with spring boot 3 and acitiviti engine
I started a spring boot 3.2 project, where I added the activiti-engine dependency
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-engine&...
1
vote
0
answers
58
views
Activiti Examples for Version 6 (OSGI integration needed)
Are there any example Java projects specifically for version 6?
SG
Looking a DemoApplication.java for version 7.0.
References ...
import org.activiti.api.process.model.ProcessDefinition;
... which ...
3
votes
1
answer
1k
views
Flowable and Activiti pricing
I am trying to explore different BPM tools and how open source they are.
For Camunda, I was able to find detailed articles (article 1, article 2).
For Flowable, I could find only this link, does this ...
0
votes
1
answer
273
views
Activiti Processes Not Deploying
I'm successfully using Activiti via the Spring Boot Starter for a while and am attempting to change from automatically deploying bpmn processes to manually doing it via Java. I basing this on a fairly ...
0
votes
0
answers
282
views
Activiti multi-instance sub process concurrent completion issue
Multi-instance sub process is set isSequential="false", while sub processes are created in parallel without any issues, users are not able to concurrently complete (Rollback due to ...
0
votes
2
answers
168
views
Activity Running multiple instances and it's impact
In our project we are using Activiti for workflow, the backend as well as front end is hosted on kubernetes, the challenge is if I have to scale the services what would happen to triggers and time ...
3
votes
0
answers
3k
views
Spring Boot 3 support with Activiti
Can anyone please provide information on the compatibility of Spring Boot version 3.x with the Activiti framework? I have checked the official documentation of Activiti but could not find any specific ...
0
votes
0
answers
147
views
Has anyone gotten Activiti 7.x series working with Kafka, in a docker environment? Or Helm
In this docker file, if you comment out the kafka specific stuff and uncomment the rabbitmq stuff, this will work. If you don't, then you get: TransactionalId tx-0: Invalid transition attempted from ...
2
votes
0
answers
160
views
404 when requesting activiti endpoint
I'm rather new to activiti. We have a project that was using an older version of activiti and spring boot. We have upgraded but I am seeing issues.
Test code:
@Value("${activiti.sys_username}&...
0
votes
0
answers
46
views
Activiti bpmn2 file placeholder for tragetRef
Is there any way to define targetRef/sourceRef/id of bpmn2 flows as variables.
eg. something like this
<sequenceFlow id ="flow1" sourceRef = ${placeholderVariable1}, targetRef = ${...
0
votes
1
answer
2k
views
Consider defining a bean of type 'org.activiti.engine.RuntimeService' in your configuration
I am working on Spring Activiti using Java 17 and getting this error. I have initialized and used RuntimeService in my code as follow
@Service
public class BPMNTaskService
{
@Autowired
private ...