当我在JBoss中部署myWebApp.war时,我可以通过下一个URL访问此Web应用程序: http://localhost:8080/myWebApp
但我希望有下一个网址: http://localhost:8080/support/myWebApp
为了拥有这样的网址,我做了什么购物?
答案 0 :(得分:4)
您是否尝试过配置context-root?
WEB-INF / JBoss的-web.xml中:
<jboss-web>
<context-root>/support/myWebApp</context-root>
</jboss-web>
答案 1 :(得分:0)
您无法部署到http://localhost:8080/support/吗?