验证 OSGi 清单
解析和验证 OSGi 清单文件的最佳方法是什么?我有一堆 MANIFEST.MF 文件,其中一个存在语法错误。执行此操作的最佳工具是什么?我宁愿不必将所有包加载到 Eclipse 中来查找问题。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
解析和验证 OSGi 清单文件的最佳方法是什么?我有一堆 MANIFEST.MF 文件,其中一个存在语法错误。执行此操作的最佳工具是什么?我宁愿不必将所有包加载到 Eclipse 中来查找问题。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
似乎 BND 工具可以提供此类清单检查,但我不确定如何...
好的,根据命令行页面,您可以执行一个
检查jar有效性的操作。
此外,如果您的捆绑包不是在 Eclipse 世界中构建的,我建议您使用优秀的 Felix 捆绑插件 实际上是上述 BND 的包装器。
Seems like BND tool can provide such manifest checking, but I'm not sure how ...
OK, According to the command line page, you can do a
to check jar validity.
Besides, are your bundles not built in Eclipse world, I recommend you to create them using the excellent Felix bundle plugin which is in fact a wrapper around the aforementionned BND.
Spring 在其库中也有清单解析和编辑文件 - 该类是 com.springsource.util.osgi.manifest.BundleManifest。
Spring also has manifest parsing and editing files in their libraries - the class is com.springsource.util.osgi.manifest.BundleManifest.