Hi,
I am using Camunda 8 with Spring Boot, and I need to extract all the details from a “.bpmn” XML file. Specifically, I am looking for information such as the flow node ID and name, the BPMN process ID, and other relevant identifiers. I want to save this information in a database.
Additionally, during the next application startup, I would like to check for any changes in the BPMN flow. If there are changes, I plan to retrieve the updated details and update the database accordingly. While I am aware that Camunda 8 stores this type of information in Elasticsearch, I would like to know if there are any other methods to achieve this.
Thank you!