如何使用代码停止 Apache Felix Webconsole 中的捆绑包
所以我已经安装了这些捆绑包,并且可以通过 gui 从 http://localhost/path/to/bundles。这里是用户界面,可以在其中搜索捆绑包并手动将其关闭。我希望能够在代码中做到这一点。
我目前正在查看 org.apache.felix.webconsole-3.1.8.jar 的示例。所以我想我的问题是:
如何连接到网络控制台以便检索捆绑包列表
如何查找特定捆绑包?通过符号名称?
So I have these bundles installed and can be accessed through the gui from
http://localhost/path/to/bundles. Here resides the UI where one can search through the bundles and manually shut it down. I want to be able to do that in code.
I am currently looking through the org.apache.felix.webconsole-3.1.8.jar for examples. So I guess my question is:
How do I connect to the webconsole so that I can retrieve the list of bundles
How can I look for the specific bundle? By symbolicName?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的代码在同一个 OSGi 容器中运行,则没有理由为此使用 Web 控制台。您可以使用 Spring-DM 或 Blueprint 之类的东西来获取对 BundleContext,然后使用 getBundle 方法获取要停止的捆绑包的引用。
从那里,您可以调用 Bundle.stop ()。
Assuming that your code is running in the same OSGi container, there's no reason to use the webconsole for this. You can just use something like Spring-DM or Blueprint to get a reference to BundleContext and then use the getBundle methods to get a reference the bundle that you want to stop.
From there, you can call Bundle.stop().