Advantage of single war file

I have a question on two different options we have to deploy a web application. Separate war file for web and core module or single file. Is there any possibility of any performance issue when deployed in a single war file over a separate war file (aa.war & app-core.war)?

regards

Single WAR file is better from the performance perspective because communication between the client and middle tiers bypasses the HTTP stack.

2 Likes

Thank you, Konstantin.