ant war - 将文件与 web.xml 并行

发布于 2024-10-21 16:16:37 字数 545 浏览 1 评论 0原文

我正在尝试将 spring webservice 与 ant 一起使用。 spring webservice需要将spring-ws-servlet.xml和sample.xsd文件放入与web.xml并行的war文件中。

我正在尝试这个 war 命令,它将并行放置到 web-inf 文件夹中,而不是放在其中。请让我知道我应该修改什么才能将其放入 web-inf 文件夹中。

<copy file="config/ws/spring-ws-servlet.xml" tofile="lps/WEB-INF/spring-ws-servlet.xml" />

<war warfile="dist/ODG.war" webxml="config/web.xml">
            <lib dir="lps/WEB-INF/lib" />
            <classes dir="lps/WEB-INF/classes" />
            <fileset dir="lps/ws"/>
</war>

I am trying to use spring webservice with ant. spring webservice requires spring-ws-servlet.xml and sample.xsd file to be put in war file parallel to web.xml.

I am trying this war command and it is putting parallele to web-inf folder instead inside of it. Please let me know what should i modify to put it inside web-inf folder.

<copy file="config/ws/spring-ws-servlet.xml" tofile="lps/WEB-INF/spring-ws-servlet.xml" />

<war warfile="dist/ODG.war" webxml="config/web.xml">
            <lib dir="lps/WEB-INF/lib" />
            <classes dir="lps/WEB-INF/classes" />
            <fileset dir="lps/ws"/>
</war>

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

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

发布评论

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

评论(1

执笔绘流年 2024-10-28 16:16:37

按照 ant 手册所述,添加 webinf 元素到 war 任务将文件添加到 WEB-INF 目录中。

<war warfile="dist/ODG.war" webxml="config/web.xml">
    ...
    <webinf>
        <fileset dir="config/ws" includes="spring-ws-servlet.xml"/>
    </webinf>
</war>

As the ant manual states, add a webinf element to the war task to add files into the WEB-INF directory.

<war warfile="dist/ODG.war" webxml="config/web.xml">
    ...
    <webinf>
        <fileset dir="config/ws" includes="spring-ws-servlet.xml"/>
    </webinf>
</war>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文