OSGi即Java模塊系統,而OSGi bundle則是OSGi中軟件發布的形式。本文講述OSGi應用中如何自動啟動bundle。作者最近開發了一個 OSGi 的應用,部署之後發現,當應用啟動的時候,幾乎所有 bundle 都處於 Resolved 狀態,而不是 Started 狀態。
51CTO編輯推薦: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<allBundles.length; 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
- {
- }
- }