在WAR文件中定义contextroot

时间:2011-12-13 05:42:18

标签: deployment command-line websphere war contextroot

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

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

请帮助,谢谢。

1 个答案:

答案 0 :(得分:20)

使用以下内容创建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>