I have two web applications deployed in two different weblogic servers.
Application 1 is a struts 1.2 based application packaged as EAR.
Application 2 is a JSF application packaged as war(small application compared to App1).
Currently, these two applications are being accessed from two differenr portals.
The idea is to decommission one server and have everything deployed on one server and if possible merge the two applications.
As Application 2 is subset of Application 1, the two aplications need to be merged and deployed on the same server.
I want to know which one of the following will be the best approach :
- Deploy the two applications in a single ear with two different war files.
- Deploy the two applications as independent ear files on the server.
- Merge the App2 in App1 in a single war, by converting the JSF into struts 1.2. Having a filter
placed to redirect the request to the correct application (as in functionality ) the correct.
Please advice.
Thanks