Eclipse中使用Ant将文件复制到Tomcat目录
我检查了一个来自 subversion 的 java servlet 项目,它有一个奇怪的组织。
所有 java 都位于一个目录中,而资源(JSP、属性文件等位于另一个目录中)。
我想使用 Ant 构建项目,然后将文件复制到我的计算机上相应的 Tomcat 目录。
例如,我想将 JSP 从源目录复制
${basedir}/resources/${ant.project.name}/*.jsp
到 tomcat 目录
${tomcat_home}/${ant.project.name}/
,在 build.xml 文件中会是什么样子?
I have checked out a java servlet project from subversion that has a strange organization.
All the java is in one directory and the resources ( JSPs, properties files, etc are in another ).
I want to use Ant to build the project, but then copy files to the appropriate Tomcat directory on my machine.
For example I would like to copy the JSP's from the source directory:
${basedir}/resources/${ant.project.name}/*.jsp
to the tomcat directory
${tomcat_home}/${ant.project.name}/
What would that look like in the build.xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想使用ant复制任务。
You want to use the ant copy task.