ant war - 将文件与 web.xml 并行
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按照 ant 手册所述,添加
webinf
元素到 war 任务将文件添加到 WEB-INF 目录中。As the ant manual states, add a
webinf
element to the war task to add files into theWEB-INF
directory.