Hi friends,
I am trying to use mutliple bpmn files in my spring boot project. I am new to Camunda so request you to please guide me on the following things:
I have bpmn files for LoanApproval process, Credit Check process…etc. How can i set up all processes in the project/application/resources folder at once? I mean how to run springboot application for all the processes?
I would like to invoke these processes from one of my nodejs microservice. I believe i can call the rest endpoints provided by individual processes (by their process keys). Pls guide me if there is any other better and efficient wy?
I want to set up my own db (MySQL or Postgres ) for process engine. Can i set up one shared prostgres db (process engine db) for all the processes (running with mutliple spring boot projects)?
If you add the @EnableProcessApplication annotation at the Spring boot main class, all BPMN files in src/main/resource will be deployed to the process engine.
No, that’s the way to go.
Yes, you will create a heterogenious cluster of process applications.