You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, process models are parsed at runtime during startup.
Idea: use the ahead-of-time compilation concept of Micronaut to parse the process models during build time and create a Java-Code representation, see org.camunda.bpm.model.bpmn.Bpmn with methods like createProcess.
Comment from @StephenOTT in #1: Note that the fluent API does not support all aspects BPMN. So as a result you need to manually generate many of the objects at a low level of the API. (Again went down this path as well for other use cases)
Currently, process models are parsed at runtime during startup.
Idea: use the ahead-of-time compilation concept of Micronaut to parse the process models during build time and create a Java-Code representation, see
org.camunda.bpm.model.bpmn.Bpmn
with methods likecreateProcess
.See also https://camunda.com/blog/2014/02/the-new-camunda-bpmn-model-api/
This will reduce the startup time.
Todo: first check if this optimisation is really worth the effort.
The text was updated successfully, but these errors were encountered: