我必须管理这样一种情况,即在没有适当发布策略的情况下,在各种服务器环境中发布了多个jar。
这意味着,除非我明确检查,否则我无法知道在给定的服务器上发布了哪个版本。
我正在努力制定这样的政策,但在那之前我一无所知。
无论如何,我设法在构建脚本中插入了一些基本信息(时间戳、运行构建的用户)的价值,所以我有一些基本数据来控制这种情况。
我想做的是阅读这些信息,并创建一份报告,告诉我总体情况。
我当然可以用两种方式自己写剧本:-从每个服务器下载jar并提取清单信息;-运行一个远程实用程序,提取清单并返回信息。
有没有一些工具/脚本/蚂蚁任务能够完成这项任务,或者我应该自己写一个?
您需要以某种方式进入每个罐子。如果你知道它们的位置——假设它们都部署在一个位置(或根文件夹)下——你可以有一个脚本,它可能会使用jar、grep和find的组合。
for i in *.jar; do jar -tvf ....
我真的想不出其他方法了。
我在这里找到了部分答案:
直接从JAR清单文件读取的Ant任务
<project>
<!-- Get a jar -->
<copy file="${ant.home}/lib/ant.jar" todir="."/>
<!--
Loads entries from a manifest file.
@jar The jar from where to read
@prefix A prefix to prepend
-->
<macrodef name="loadmf">
<attribute name="jar"/>
<attribute name="prefix" default=""/>
<sequential>
<loadproperties>
<!-- Load the manifest entries -->
<zipentry zipfile="@{jar}" name="META-INF/MANIFEST.MF"/>
<!-- Add the prefix -->
<filterchain>
<prefixlines prefix="@{prefix}"/>
</filterchain>
</loadproperties>
</sequential>
</macrodef>
<!-- Read mf entries -->
<loadmf jar="ant.jar" prefix="ant-mf."/>
<!-- Print them -->
<echoproperties prefix="ant-mf."/>
</project>
它几乎做到了它所说的。
输出类似于:
Buildfile: C:devantbuild.xml
[copy] Copying 1 file to C:devant
[echoproperties] #Ant properties
[echoproperties] #Wed Jan 25 12:02:09 CET 2012
[echoproperties] ant-mf.=
[echoproperties] ant-mf.Ant-Version=Apache Ant 1.8.1
[echoproperties] ant-mf.Created-By=1.5.0_22-b03 (Sun Microsystems Inc.)
[echoproperties] ant-mf.Extension-name=org.apache.tools.ant
[echoproperties] ant-mf.Implementation-Title=org.apache.tools.ant
[echoproperties] ant-mf.Implementation-Vendor=Apache Software Foundation
[echoproperties] ant-mf.Implementation-Version=1.8.1
[echoproperties] ant-mf.Main-Class=org.apache.tools.ant.Main
[echoproperties] ant-mf.Manifest-Version=1.0
[echoproperties] ant-mf.Name=org/apache/tools/ant/
[echoproperties] ant-mf.Specification-Title=Apache Ant
[echoproperties] ant-mf.Specification-Vendor=Apache Software Foundation
[echoproperties] ant-mf.Specification-Version=1.8.1
BUILD SUCCESSFUL
Total time: 2 seconds
这是我完成任务所需要的基本东西。