Define contextroot inside WAR file

非 Y 不嫁゛ 提交于 2019-12-18 04:03:43

问题


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.


回答1:


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>


来源:https://stackoverflow.com/questions/8484842/define-contextroot-inside-war-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!