gpt4 book ai didi

java - Tool/Bundle-Name/Export-Package 等在 jar list 中意味着什么

转载 作者:搜寻专家 更新时间:2023-10-31 19:51:02 26 4
gpt4 key购买 nike

我正在查看一些 apache 库的 manifest.mf。虽然我可以猜出 Export-Package 的含义,但我找不到这些属性的任何文档?谁能指出我正确的方向。这是一个例子:

Manifest-Version: 1.0
Created-By: 1.6.0_07 (Sun Microsystems Inc.)
Built-By: pemben
Implementation-Title: Commons BeanUtils
Implementation-Vendor: The Apache Software Foundation
Implementation-Vendor-Id: org.apache
Implementation-Version: 1.8.2
Specification-Title: Commons BeanUtils
Specification-Vendor: The Apache Software Foundation
Specification-Version: 1.8.2
Export-Package: org.apache.commons.beanutils.locale.converters;
Private-Package: org.apache.commons.collections;version="1.8.2"
Ignore-Package: org.apache.commons.collections
Tool: Bnd-0.0.238
Bundle-Name: Commons BeanUtils
Bundle-Vendor: The Apache Software Foundation
Bundle-Version: 1.8.2
Bnd-LastModified: 1257775355133
Bundle-ManifestVersion: 2
Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt
Bundle-Description: BeanUtils provides an easy-to-use but flexible wra
pper around reflection and introspection.
Import-Package: org.apache.commons.beanutils;version="1.8.2"
Bundle-SymbolicName: org.apache.commons.beanutils
Bundle-DocURL: http://commons.apache.org/beanutils/

最佳答案

Bundle 属性定义信息 wrt。 OSGi bundle 。 OSGi 包只是一个 .jar 文件,它还定义(通过属性)它导出的内容以及它的依赖项(包括版本)。请注意,.jar 文件可用作标准 .jar 文件 - bundle 信息仅在 OSGi 容器中使用。

This JavaWorld article是一个很好的介绍。

关于java - Tool/Bundle-Name/Export-Package 等在 jar list 中意味着什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1816606/

26 4 0