Struts 2 是否可以作为 OSGi 捆绑包提供?
我有一个服务器应用程序,由多个 OSGi 包组成,其中一些是我的,一些是第三方的。 其中一个捆绑包提供了使用 Struts 的 Web 前端。 必要的 Struts 库位于 Web 前端包内。
现在我想添加第二个包,它提供另一个 Web 前端,具有不同的依赖项和非常不同的用例。 我也想为该捆绑包使用 Struts,但我不想将相同的库放入两个捆绑包中。
使用 OSGi,将 Struts 库分离到它们自己的捆绑包中并从我的两个捆绑包中使用它应该没有问题。 然而,我找不到这样打包的 Struts。
快速谷歌搜索并查看 Struts 主页 没有得到任何结果。 我可以找到一个 Struts 插件来在 Struts 中运行 OSGi 容器,但这不是我想要的。
I have a server application that consists of multiple OSGi bundles, some mine, some third-party. One of the bundles provides a web frontend using Struts. The necessary Struts libraries live inside the web front-end bundle.
Now I want to add a second bundle that provides another web front-end, with different dependencies and a very different use case. I want to use Struts for that bundle, too, but I don't want to put the same libraries into two bundles.
With OSGi, it should be no problem to separate the Struts libs in a bundle of their own and use that from both my bundles. However, I couldn't find Struts packaged that way.
Some quick googling and a look at the Struts homepage didn't yield anything. I could find a plugin for Struts to run an OSGi container inside Struts, but that's not what I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 http 上当前的 struts 包: //repo2.maven.org/maven2/org/apache/struts/struts2-core/2.1.6/。
例如,如果您下载 struts2-core-2.1.6.jar,将其解压并查看 META-INF/MANIFEST.MF,您会发现它确实包含 OSGI 标头(Import-Package、Export-Package、Bundle- *):
不知道如何在 OSGi 应用程序中使用它们 - 但理论上你至少可以引用它们并做“事情”! :)
Take a look at the current struts bundles on http://repo2.maven.org/maven2/org/apache/struts/struts2-core/2.1.6/.
If you download struts2-core-2.1.6.jar for example, extract it and take a look at META-INF/MANIFEST.MF you'll see that it does contain OSGI headers (Import-Package, Export-Package, Bundle-*):
No idea how you go about using them within an OSGi app - but in theory you can atleast reference them and do "stuff"!! :)