Eclipse中使用Ant将文件复制到Tomcat目录

发布于 2024-09-05 00:15:19 字数 368 浏览 5 评论 0原文

我检查了一个来自 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 技术交流群。

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

发布评论

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

评论(1

寻找一个思念的角度 2024-09-12 00:15:19

您想使用ant复制任务。

<copy todir="${tomcat_home}/${ant.project.name}">
   <fileset dir="${basedir}/resources/${ant.project.name}">
      <include name="**/*.jsp" />
   </fileset>
</copy>

You want to use the ant copy task.

<copy todir="${tomcat_home}/${ant.project.name}">
   <fileset dir="${basedir}/resources/${ant.project.name}">
      <include name="**/*.jsp" />
   </fileset>
</copy>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文