Hi all,
I am new with camunda and when I download camunda from Camunda Platform Download Hub | Camunda and start start-camunda.bat, I can work with standalone-working camunda. When I use its process deployment rest api, I can deploy a new process without camunda restart requirement. Even though I stop camunda and start it again, the new process is still here. When I work with spring boot application embedded version of camunda, I can also make rest calls to deploy process and the new process can also be used without camunda restart. But the main issue is that if I stop the spring boot application and run it again, the new process doesn’t exist any more and the only processes that I can use are the ones under resources folder. Is there any one that can tell me difference between these two usage? What happens under the hood? Where does the standalone version stores the deployed processes?
My dependencies for spring boot application:
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
<version>3.4.2</version>
</dependency>
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
<version>3.4.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>