无法使用wsadmin将上下文根目录传递给websphere中的.war应用程序

时间:2017-07-14 07:31:11

标签: ant automation websphere wsadmin installation-package

我需要一点帮助来更新我的Websphere 8.5 appserver中的战争的上下文根。我有一个名为DefaultApplication.war的war文件,在通过websphere控制台手动部署期间,我可以设置context-root。现在我需要自动化当前流程,我选择编写ant脚本来安装war文件。以下是代码

<target name="installEAR" depends="uninstallEAR">
<fail unless="wasHome.dir">The property "wasHome.dir" must be specified.
</fail>
<fail unless="appName">The property "appName" must be specified.</fail>
<fail unless="deployEar">The property "deployEar" must be specified.</fail>
    <echo message="Deployable EAR File found at: ${deployEar}" />
    <wsInstallApp ear="${deployEar}"
                  options="-appname ${appName} -cell ${was.cell} -node ${was.node} -usedefaultbindings"
                  wasHome="${wasHome.dir}"
                  conntype="${connType}"
                  port="${port}"
                  host="${hostName}"
                  user="${userId}"
                  password="${password}"
                  failonerror="true" />
</target>

如上面的代码所述,iam设置-usedefaultbindings使用,我在war文件的WEB-INF文件夹中有ibm-web-ext.xml文件。

ibm-web-ext.xml的上下文:

<?xml version="1.0" encoding="UTF-8"?>
<web-ext
 xmlns="http://websphere.ibm.com/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://websphere.ibm.com/xml/ns/javaee 
    http://websphere.ibm.com/xml/ns/javaee/ibm-web-ext_1_1.xsd"  
version="1.1">

<context-root uri="test"/>
</web-ext>

部署后,我的应用程序开始启动但无法通过/ test context path访问它。请帮助我。

提前致谢。

1 个答案:

答案 0 :(得分:1)

您必须在web.xml中指定Servlet 3.0或3.1,否则将不会解释ibm-web-ext.xml。对于2.4,将解释名为ibm-web-ext.xmi的类似文件。