I have the following deployment situation:
- application_one.war
- application_two.war
- application_three.war
When I deploy it to Jboss, I get three URL contexts:
- HTTP // MyServer / application_one /
- HTTP // MyServer / application_two /
- HTTP // MyServer / application_three /
Is it possible to change (add) a globally additional path to all deployed web applications in one setting so that my new path looks like this?
- HTTP // MyServer / globalprefix / application_one /
- HTTP // MyServer / globalprefix / application_two /
- HTTP // MyServer / globalprefix / application_three /
I do not want to change the war with jboss-web.xml, but I want to do this generally in a central position, so even new wars will get this context.