When I deploy myWebApp.war in JBoss I can access this web application by next URL: http://localhost%3A8080/myWebApp
But I want to have next URL: http://localhost%3A8080/support/myWebApp
What shopuld I do in order to have such URL?
When I deploy myWebApp.war in JBoss I can access this web application by next URL: http://localhost%3A8080/myWebApp
But I want to have next URL: http://localhost%3A8080/support/myWebApp
What shopuld I do in order to have such URL?
Have you tried to configure the context-root?
WEB-INF/jboss-web.xml:
<jboss-web>
<context-root>/support/myWebApp</context-root>
</jboss-web>