Jboss中的上下文路径

时间:2010-01-12 03:50:10

标签: jboss contextpath

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

2 个答案:

答案 0 :(得分:11)

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

<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>  

答案 1 :(得分:0)

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

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