程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2EE >> OSGi應用中自動啟動bundle

OSGi應用中自動啟動bundle

編輯:J2EE

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, 代碼如下:

  1. public class OSGiStartingBundleActivator implements BundleActivator
  2. {
  3. public static BundleContext bundleContext = null;
  4. public void start(BundleContext context) throws Exception
  5. {
  6. bundleContext = context;
  7. // start bundles if it has been installed and not started
  8. Bundle[] allBundles = context.getBundles();
  9. for (int i=0; i<allBundles.length; i++)
  10. {
  11. int currState = allBundles[i].getState();
  12. if ( Bundle.ACTIVE != currState && Bundle.RESOLVED==currState )
  13. {
  14. System.out.println("starting bundle : " + allBundles[i].getSymbolicName());
  15. try
  16. {
  17. allBundles[i].start();
  18. }
  19. catch (BundleException e)
  20. {
  21. e.printStackTrace();
  22. }
  23. }
  24. }
  25. }
  26. public void stop(BundleContext context) throws Exception
  27. {
  28. }
  29. }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved