9

目前在JBOSS中部署了一场战争。如果我想找出 Jboss 中 WAR 的上下文路径,我应该在哪里查看?服务器.xml?

4

2 回答 2

12

如果您的应用程序被打包为 WAR 文件,那么您可以在 WAR 文件的 WEB-INF 文件夹下创建 jboss-web.xml 并在 jboss-web.xml 中指定上下文根,如下所示 -

<jboss-web>
  <context-root>MyWebAppContext</context-root>
</jboss-web>

如果您的应用程序被打包为 EAR 文件,那么您可以像这样在 EAR 的 META-INF/application.xml 中指定 context-root

<module>  
  <web>  
    <web-uri>MyWAR.war</web-uri>  
    <context-root>MyWebAppContext</context-root>  
  </web>  
</module>  
于 2010-01-12T04:29:38.030 回答
0

在 Jboss 4.2.3 中,转到您的 jmx-console 并在 jboss.web 下找到应用程序及其上下文路径,例如: J2EEApplication=none,J2EEServer=none,j2eeType=WebModule,name=//localhost/jmx-console

具有上下文路径“jmx-console/”

于 2010-01-19T01:20:19.833 回答