如何更改GlassFish应用网址(how to Change glassfish applicat

2019-09-01 05:01发布

我现在的GlassFish应用可以使用这个网址访问,

本地主机:9595 /顶点

我想将其更改为

本地主机:9595 / PLS /顶点

我需要在这种情况下发生改变。

Answer 1:

您可以通过添加上下文根更改上下文根为您的应用程序glassfish-web.xml (如果你没有在你的项目文件,在WEB-INF文件夹中创建它)是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app error-url="">
    <context-root>/pls/apex</context-root>
</glassfish-web-app>

更新 :如果这不起作用,你可以尝试使用sun-web.xml就像是在描述这个问题 。



Answer 2:

可选择使用descriptior glassfish-web.xml ,你可以明确地使用asadmin的--contextroot开关definde在部署时的上下文根:

asadmin deploy --contextroot="/pls/apex" apex.war

或填充在管理控制台中适当的上下文根域。



文章来源: how to Change glassfish application url