1

介绍

我创建了一个脚本,该脚本循环遍历我们的应用程序服务器上所有已安装的应用程序,为每个找到 WEB-INF/lib 文件夹的应用程序。然后,对于 lib 文件夹中的所有第三方 jar 文件,我提取清单文件以查找Implementation-Version -key 及其值,前提是假设只有一个 Implementation-Version pr。清单.mf。到目前为止一切都很好,但是......然后一些应用程序以某种方式依赖于 XML,因此在 lib 文件夹中具有像

  • xalan.jar
  • xml-apis.jar
  • xerxesImpl.jar

问题

所以,然后去阅读我必须承认的Jar 文件规范并没有让我清楚:我应该能够通过读取 manifest.mf 文件中的单个条目来找到 jar 文件的版本吗?

manifest.mf 示例

这是在其中一个应用程序中找到的 xalan.jar 文件的 MANIFEST.MF 内容的一部分。这表明很难编写一个应该能够知道所有 jar 文件版本的脚本。

Manifest-Version: 1.0
Created-By: 1.3.1 (IBM Corporation)
Main-Class: org.apache.xalan.xslt.Process
Class-Path: xercesImpl.jar xml-apis.jar serializer.jar

Name: org/apache/xalan/
Comment: Main Xalan engine implementing TrAX/JAXP
Specification-Title: Java API for XML Processing
Specification-Vendor: Sun Microsystems Inc.
Specification-Version: 1.3
Implementation-Title: org.apache.xalan
Implementation-Version: 2.7.0
Implementation-Vendor: Apache Software Foundation
Implementation-URL: http://xml.apache.org/xalan-j/

Name: org/apache/xpath/
Comment: XPath engine
Implementation-Title: org.apache.xpath
Implementation-Version: 2.7.0
Implementation-Vendor: Apache Software Foundation
Implementation-URL: http://xml.apache.org/xalan-j/

Name: org/apache/xml/
Comment: DTM implementation and utilities
Implementation-Title: org.apache.xml
Implementation-Version: 2.7.0
Implementation-Vendor: Apache Software Foundation
Implementation-URL: http://xml.apache.org/xalan-j/

事后诸葛亮

但是 - 也许我应该创建一个“黑名单”,其中要忽略哪些 jar,例如所有与 XML 相关的 jar。我找到了这个链接Xerces and Xalan locations and versions,表明我无法通过查看 manifest.mf 文件找到 xalan.jar 的版本。相反,我需要获取版本类的输出。

4

1 回答 1

1

我是否应该通过读取 manifest.mf 文件中的单个条目来找到 jar 文件的版本?

您“可能”能够以这种方式找到版本号,但 JAR 文件中的版本号是可选的。(事实上​​,即使是版本的想法也是“可选的”。Java 中没有任何内容要求您对代码进行版本控制……尽管这无疑是个好主意!)

您的“事后想法”当然看起来更简单,尽管您需要查看相关规范以确定它是否需要工作。

于 2012-11-04T21:10:03.913 回答