I have a legacy project which is struts based (1.2) and deployed on JBOSS AS 7.
The project started off small several years ago catering to one single product but now has several sections in it. We want to break them into maven modules and generate separate wars out of it and deploy them - so that whichever module needs changed will be re-released using the Jboss Management console.
Idea was to package all modules as self-sufficient wars in a EAR and deploy. However I see if I package all in an EAR there is no way one can hot-deploy a part of it i.e. a single war in it. Is it even possible with an EAR?
Also all the module would have a common Login front end - Is there a way to a common Login-Only war which can then redirect to other wars while maintaining a session?