可以在glassfish中更改Web应用程序(war
)的上下文路径,但有没有任何解决方案可以更改Entreprise应用程序的上下文路径(ear
)?
我尝试将其从glassfish-web.xml
更改为:
<!-- Default context -->
<context-root>/module1-web</context-root>
<!-- New context -->
<context-root>/erp/module1-web</context-root>
但它不起作用。我试图从服务器更改它,但没有办法改变它。
Web应用程序上下文路径
这个问题有解决方法吗?
谢谢。
答案 0 :(得分:4)
是的,您的问题有解决方案。
您需要将名为application.xml
的文件放在EAR的META-INF
文件夹中。
以下是文件的外观示例:
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_6.xsd" version="6">
<application-name>your_application</application-name>
<display-name>your_application</display-name>
<module>
<web>
<web-uri>your-war-file.war</web-uri>
<context-root>/your_desired_context</context-root>
</web>
</module>
<module>
<web>
<web-uri>another-war-file.war</web-uri>
<context-root>/another/context/for/the/second/war/file</context-root>
</web>
</module>
<module>
<ejb>ejb-module-example.jar</ejb>
</module>
<library-directory>lib</library-directory>
</application>
如您所见,您还可以使用不同的上下文路径声明多个Web模块。
您可以使用maven-ear-plugin生成文件,有关详细信息,请查看this。
以下是如何使用插件的示例:
要使其工作,您必须将Web模块(WAR)与额外的maven项目分开。然后你可以在插件配置中引用它,如下所示:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.9</version>
<configuration>
<version>6</version>
<defaultLibBundleDir>lib</defaultLibBundleDir>
<applicationName>your_application</applicationName>
<modules>
<webModule>
<groupId>com.yourcompany</groupId>
<artifactId>your-web-module</artifactId>
<contextRoot>/your-web-module</contextRoot>
<excluded>false</excluded>
</webModule>
</modules>
</configuration>
</plugin>
</plugins>