Hi!
I have a big one .bpmn with 5 processes.
I should have 5 .war for each process(for Tomcat).
I understand I need to separate .bpmn to parts and deploy as different projects…
But is it possible to have one .bpmn for different .war?
Hi @Vasily
Welcome to the forum.
Generally if you have a choice in the matter there’s no reason not to keep all 5 in the same war file.
Having a single war file will make the server start up faster and make it easier to share util classes across processes. Also - re-deployment is pretty easy as only processes that have been changed in a re-deployment will be versioned.
The downside might be that it would be harder to maintain everything individually. The project would always need to be kept together.