蚂蚁构建-Web服务上下文根

时间:2018-06-20 01:42:57

标签: web-services ant

我有2个用于Web服务的ant构建文件,具有不同的contextpath名称。 现在,第一个构建(contextpath = webs01)使用正确的上下文根目录成功。但是,当我运行第二个构建文件(contextpath = webs02)时,它将继续使用webs01作为上下文根,我缺少什么?

<target name="build-webservice">
    <jwsc srcdir="src"
          destdir="${ear-dir}"
          keepGenerated="true"
          deprecation="true"
          debug="true"
          verbose="false">

        <jws file="/com/WebService.java" type="JAXRPC" explode="false" contextpath="webs02">
            <zipfileset dir="WEB-INF/lib" prefix="WEB-INF/lib">
                <include name="**/*.jar"/>
            </zipfileset>
            <fileset dir="src"></fileset>
        </jws>
        <classpath refid="library.lib.classpath"/>
    </jwsc>
</target>

0 个答案:

没有答案