一尘不染

Apache Ant如何将.war文件部署到Tomcat

tomcat

我正在使用Apache Ant 1.8将Web应用程序部署到本地Tomcat服务器中,并且在命令行上运行“ ant
deploy”时,build.xml文件(如下)会产生所需的效果。

我的问题是,我注意到.war文件被放置在我期望的位置(deploy.dir在我的主目录的build.properties文件中定义),但是它也意外地解压缩了.war并将其上下文本身提取到了相同的文件中目录。在以下build.xml文件中的哪个位置进行了配置?

  <target name='init'>
    <property file='${user.home}/build.properties'/>
    <property name='app.name' value='${ant.project.name}'/>
    <property name='src.dir' location='src'/>
    <property name='lib.dir' location='lib'/>
    <property name='build.dir' location='build'/>
    <property name='classes.dir' location='${build.dir}/classes'/>
    <property name='dist.dir' location='${build.dir}/dist'/>
  </target>

  <target name='initdirs' depends='init'>
    <mkdir dir='${classes.dir}'/>
    <mkdir dir='${dist.dir}'/>
  </target>

  <target name='compile' depends='initdirs'>
    <javac srcdir='${src.dir}/java' destdir='${classes.dir}'>
      <!--
      <classpath>
        <fileset dir='${lib.dir}/development' includes='javaee.jar'/>
        <fileset dir='${lib.dir}/production' includes='jr.jar'/>
      </classpath>
      -->
    </javac>
  </target>

  <target name='war' depends='compile'>
    <war destFile='${dist.dir}/${app.name}.war' webxml='${src.dir}/web/WEB-INF/web.xml'>
      <classes dir='${classes.dir}'/>
      <!--
      <zipfileset dir='${lib.dir}/production' includes='jr.jar' prefix='WEB-INF/lib' />
      -->
      <fileset dir='${src.dir}/web' excludes='WEB-INF/web.xml' />
    </war>
  </target>

  <target name='build' depends='war' description='compile and create the war' />

  <target name='clean' depends='init' description='Use for a clean build'>
    <delete dir='${build.dir}' />
  </target>

  <target name='ffbuild' depends='clean, build' description='clean and create the war'/>

  <target name='deploy' depends='initdirs' description='copy the war file to the app server'>
    <delete verbose='true' dir='${deploy.dir}/${app.name}'/>
    <fail unless='deploy.dir' message='build.properties must exist in your home directory and define deploy.dir' />
    <copy todir='${deploy.dir}' file='${dist.dir}/${app.name}.war'/>
  </target>

阅读 189

收藏
2020-06-16

共1个答案

一尘不染

Tomcat有一个autodeploy文件夹,您放置在其中的任何war文件都将自动解压缩并部署。您的ant文件只是通过在tomcat-manager
Web应用程序(已预先打包到tomcat中)中调用特殊URL,将war文件复制到此目录中。

从这一点开始,所有内容都由tomcat核心自动处理,即使您将war文件手动复制到webapps目录中也是如此。

您可以让ant在tomcat的某些特定ant任务上做更多的事情。特别是如果Tomcat服务器不在本地计算机上。有关详细信息,请参见此链接

2020-06-16