hi ,
i have encountered a strange behaviour , the camunda process instance is starting all the Java delegate classes automatically. using the below camunda spring version
<properties>
<camunda.version>7.11.0</camunda.version>
<!--
Adjust if you want to use Camunda Enterprise Edition (EE):
<camunda.version>7.11.0-ee</camunda.version>
Make sure you also switch to the ee webapp dependency
and EE repository below
-->
<camundaSpringBoot.version>3.3.1</camundaSpringBoot.version>
<springBoot.version>2.3.3.RELEASE</springBoot.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<version.java>11</version.java>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
Am using flow flow
any configuration which because of this happening. am not getting proper reason for this.
below is the application.yml
spring.datasource:
url: jdbc:h2:./camunda-db;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
#shareable h2 database: jdbc:h2:./camunda-db;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE;AUTO_SERVER=TRUE
username: sa
password: sa
spring.h2.console.enabled: true
camunda.bpm:
authorization.enabled: true
admin-user:
id: demo
password: demo
firstName: Demo
lastName: Demo
filter:
create: All Tasks
server.port: 8081
logging:
level:
root: INFO
com.ok: DEBUG
active-mq:
broker-url: tcp://localhost:61616
topic: test-topic
from:
topic: to-bl