eclipse调试equinox bundle时只能启动6个bundle的问题

最近写了一个equinox的OSGi工程,里面有十几个bundle需要启动时自动运行Activator类,在eclipse的“run/run configuration”中设置了这些插件为他们定义了startLevel参数。同时,.product配置中“configuration”中“Specify plug-ins and their associated start levels.”auto-start都设置成了true。但是发现,只有6个bundle是可以自动启动的。

 

怎么也想不明白,于是跟踪看了equinox源代码后发现,原来System.properties中必须有一个参数叫做osgi.startLevel。这个参数控制着自动启动的最大bundle个数,否则就默认使用DEFAULT_INITIAL_STARTLEVEL=6变量的值。这也就解释了我的bundle只能启动6个的原因。

 

想到config.ini的参数会被加载到System.properties里面,于是从runconfigurations的configuration选项卡里面记录的config area文件夹里面找到config.ini,并且增加了参数osgi.startLevel=19。但是结果却是,每次启动程序,这个config.ini都会被eclipse重写,osgi.startLevel就被消灭了。

 

没办法,最后解决办法是在“Arguments”选项卡中设置了VM argument增加了"-Dosgi.startLevel=19",才搞定。

你可能感兴趣的:(eclipse,osgi)