Struts2,更改项目的网络浏览器 URL?
Struts2、Eclipse。
除了重命名项目之外,是否还有其他方法可以更改项目的 Web 浏览器 URL?
示例:
我的动态网页项目名称:MyProject
网址:http:// /localhost:8080/MyProject
现在我想将该网址更改为: http://localhost:8080/Project< /a>,但保留项目名称 MyProject
tnx.
Struts2, eclipse.
Is there another way of changing the project's web browser url, except of renaming the project?
Example:
My dynamic web page project name: MyProject
Url: http://localhost:8080/MyProject
now I want to change that url to: http://localhost:8080/Project, but keep project name MyProject
tnx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可以更改 web.xml 中的 url 模式,这样就可以解决问题。
I think you can change the url pattern in the web.xml which will do the trick.
您的问题是特定于应用程序服务器/servlet 容器的。您应该查找有关上下文路径的相关信息,这是在主机和端口名称之后定义应用程序 URL 的内容。
在您的示例中,
http://localhost:8080/MyProject
,上下文路径为MyProject
,您必须在应用程序中更改它。服务器/容器配置。Your question is application server / servlet container specific. You should lookup relevant infromation about context path, this is what defines your application's URL after host and port name.
In your example,
http://localhost:8080/MyProject
, context path isMyProject
and you must change that in your app. server / container configuration.