4

我需要使用 ANT 构建脚本在 tomcat/webapps 目录中解压缩一个 war 文件。战争文件名不固定。如何将其解压缩到名称与war文件名相同的目录中。我知道如何解压缩文件,但问题是它解压缩了指定目标目录中的内容。如果我不知道目录名称怎么办?

构建之前:

tomcat/webapps/
   myApp-0.1.war

构建后:

tomcat/webapps
   myApp-0.1/
   myApp-0.1.war
4

2 回答 2

4

因此,在了解了一些 Ant 任务之后,我想到了:

<!-- Get the path of the war file. I know the file name pattern in this case -->
<path id="warFilePath">
    <fileset dir="./tomcat/webapps/">
        <include name="myApp-*.war"/>
    </fileset>
</path>

<property name="warFile" refid="warFilePath" />

<!-- Get file name without extension -->
<basename property="warFilename" file="${warFile}" suffix=".war" />

<!-- Create directory with the same name as the war file name -->
<mkdir dir="./tomcat/webapps/${warFilename}" />

<!-- unzip war file -->
<unwar dest="./tomcat/webapps/${warFilename}">
    <fileset dir="./tomcat/webapps/">
        <include name="${warFilename}.war"/>    
    </fileset>
</unwar>

让我知道是否有更好的方法来做到这一点。我还使用 ant-contrib 找到了关于 stackoverflow 的解决方案,但这不是我想要的。

于 2012-08-29T00:52:12.473 回答
3

干得好蓝科技。您的解决方案也可以表示如下:

<target name="unwar-test">
  <property name="webapps.dir" value="tomcat/webapps" />

  <fileset id="war.file.id" dir="${basedir}"
      includes="${webapps.dir}/myApp-*.war" />
  <property name="war.file" refid="war.file.id" />

  <basename property="war.basename" file="${war.file}" suffix=".war" />
  <property name="unwar.dir" location="${webapps.dir}/${war.basename}" />
  <mkdir dir="${unwar.dir}" />
  <unwar dest="${unwar.dir}" src="${war.file}" />
</target>
于 2012-08-29T03:23:07.760 回答