今天研究JBPM源码略有所得,了解的RCP中Application和Product之间的关系。
众所周知,RCP或Eclipse可以以两种方式运行,一种是以eclipse.product方式,另一种是以eclipse.application。一般开发RCP时首先要扩展org.eclipse.core.runtime.applications,并指定Application的实现类,一般为Application.java。我们在启动程序时只要配置config.ini文件的eclipse.application项即可。
如果要程序以Product方式运行,则需要扩展org.eclipse.core.runtime.products,并指定application项为org.eclipse.core.runtime.applications扩展点的标识(完整标识,即如果org.eclipse.core.runtime.applications标识为sample,Plugin的标识为com.yourcompany.ui,则完整标识为com.yourcompany.ui.sample)。我们在启动程序时只要配置config.ini文件的eclipse.product项即可。