OSGi即Java模块系统,而OSGi bundle则是OSGi中软件发布的形式。本文讲述OSGi应用中如何自动启动bundle。作者最近开发了一个 OSGi 的应用,部署之后发现,当应用启动的时候,几乎所有 bundle 都处于 Resolved 状态,而不是 Started 状态。
创新互联专业为企业提供安州网站建设、安州做网站、安州网站设计、安州网站制作等企业网站建设、网页设计与制作、安州企业网站模板建站服务,十多年安州做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
编辑推荐:OSGi入门与实践全攻略
怎样启动bundle 呢?有如下几种方法 :
1. 手工启动bundle,即在 console 中使用命令 start N 来逐个启动所有bundle,其中 N 表示每个 bundle 的 id
这种方法过于麻烦,要耗费大量时间,因此不可取。
2.在配置文件中声明为自动启动bundle。在 WEB-INF\eclipse\configuration 中的 config.ini 中,如下配置:
osgi.bundles=bundle1@start, bundle2@start,......bundleN@start
这种方法可以自动启动所有bundle,但是写起来仍然比较麻烦,需要把所有bundle 一个一个都配置为@start。
3. 在应用的所有bundle 中选择一个bundle,将其在 config.ini 中配置为自动启动,然后在这个bundle 中,再把
应用的所有其他bundle 启动起来。假定该bundle 的Activator 类为 OSGiStartingBundleActivator, 代码如下:
- public class OSGiStartingBundleActivator implements BundleActivator
- {
- public static BundleContext bundleContext = null;
- public void start(BundleContext context) throws Exception
- {
- bundleContext = context;
- // start bundles if it has been installed and not started
- Bundle[] allBundles = context.getBundles();
- for (int i=0; i
- {
- int currState = allBundles[i].getState();
- if ( Bundle.ACTIVE != currState && Bundle.RESOLVED==currState )
- {
- System.out.println("starting bundle : " + allBundles[i].getSymbolicName());
- try
- {
- allBundles[i].start();
- }
- catch (BundleException e)
- {
- e.printStackTrace();
- }
- }
- }
- }
- public void stop(BundleContext context) throws Exception
- {
- }
- }
【编辑推荐】
网站题目:OSGi应用中自动启动bundle
浏览路径:http://www.mswzjz.cn/qtweb/news4/237654.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能