How can one implement the fetching and updating of Flowable model XML using Spring Boot and the Flowable engine when ModelRepository access is not available?
Hello everyone, I’m currently working on implementing an API with Spring Boot and the Flowable engine.
I’m facing issues while fetching a model’s XML based on its ID or key and .then updating it to deploy the model(publish it to the app).
I have tried to fetch the model using the RepositoryService,
for example, Model model = (Model) processEngine.getRepositoryService().getModel(modelId); // this returns null.
I have also tried using createModelQuery().modelId(modelId) or key, but no luck.
T…