在 WAR 文件中定义 contextroot

发布于 2024-12-20 16:56:42 字数 277 浏览 3 评论 0原文

我有一个自动部署脚本,可以在 WAS 7 中部署多个 WAR 文件。 因此,我想在 WAR 文件本身中定义 contextroot 。它应该自动从文件设置为 " ... -contextroot xxxx ..."

我该怎么做?我想,我需要使用 WEB-INF/ibm-web-bnd.xml 添加一些内容。 我不知道在里面写什么。

请帮忙,谢谢。

I have an automated deployment script to deploy multiple WAR files in WAS 7.
So, I would like to define contextroot inside the WAR file itself. It should automatically set to " ... -contextroot xxxx ..." from the file.

How do I do that? I think, I need to add something with WEB-INF/ibm-web-bnd.xml.
I dont know what to write in it.

Pls help, thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残疾 2024-12-27 16:56:42

使用以下内容创建 WEB-INF/ibm-web-ext.xml

<web-ext
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns="http://websphere.ibm.com/xml/ns/javaee"
  xsi:schemaLocation="http://websphere.ibm.com/xml/ns/javaee http://websphere.ibm.com/xml/ns/javaee/ibm-web-ext_1_0.xsd"
  version="1.0"
>
  <context-root uri="/TestProject"/>
</web-ext>

Create WEB-INF/ibm-web-ext.xml with these contents:

<web-ext
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns="http://websphere.ibm.com/xml/ns/javaee"
  xsi:schemaLocation="http://websphere.ibm.com/xml/ns/javaee http://websphere.ibm.com/xml/ns/javaee/ibm-web-ext_1_0.xsd"
  version="1.0"
>
  <context-root uri="/TestProject"/>
</web-ext>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文