如何从 EAR 打包的应用程序中的 MANIFEST.MF 文件获取属性?
我希望能够获取在 EAR 文件的 MANIFEST.MF 中设置的诸如实现版本之类的属性,以便我可以在 Web 应用程序中使用它们。
这样做的最佳方法是什么?
谢谢
I'd like to be able to get attributes like Implementation-Version that are set in my EAR file's MANIFEST.MF, so that I can make them available in a webapp.
What's the best way to go about doing that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在标准范围内没有办法做到这一点。我建议在构建时提取数据并将其复制到 WAR 中更方便的位置。
There is no way to do this within the standards. I would suggest extracting the data at build time and copying it into a more convenient location inside the WAR.