当前位置: 代码迷 >> Eclipse >> jbpm3.2跟myeclipse7.5/7.0开发环境的集成 (转载)
  详细解决方案

jbpm3.2跟myeclipse7.5/7.0开发环境的集成 (转载)

热度:538   发布时间:2016-04-23 02:19:19.0
jbpm3.2和myeclipse7.5/7.0开发环境的集成 (转载)

1,首先到jboss网站上下载jbpm-jpdl-suite-3.2.3.zip这个压缩包,然后将其解压即可,生成了一个jbpm- jpdl-3.2.3文件夹(我这里存放的路径为E:\jbpm\jbpm-jpdl-3.2.3)

2,启动myeclipse7.5, 首先新建一个工程,任意工程都行,然后运行下面程序

    import java.io.File;
import java.util.ArrayList;
import java.util.List;

public class CreatePluginsConfig {

??? public CreatePluginsConfig() {
??? }

??? public void print(String path) {
??????? List list = getFileList(path);
??????? if (list == null) {
??????????? return;
??????? }

??????? int length = list.size();
??????? for (int i = 0; i < length; i++) {
??????????? String result = "";
??????????? String thePath = getFormatPath(getString(list.get(i)));
??????????? File file = new File(thePath);
??????????? if (file.isDirectory()) {
??????????????? String fileName = file.getName();
??????????????? if (fileName.indexOf("_") < 0) {
??????????????????? print(thePath);
??????????????????? continue;
??????????????? }
??????????????? String[] filenames = fileName.split("_");
??????????????? String filename1 = filenames[0];
??????????????? String filename2 = filenames[1];
??????????????? result = filename1 + "," + filename2 + ",file:/" + path + "\\"
??????????????????????? + fileName + "\\,4,false";
??????????????? System.out.println(result);
??????????? } else if (file.isFile()) {
??????????????? String fileName = file.getName();
??????????????? if (fileName.indexOf("_") < 0) {
??????????????????? continue;
??????????????? }
??????????????? int last = fileName.lastIndexOf("_");// 最后一个下划线的位置
??????????????? String filename1 = fileName.substring(0, last);
??????????????? String filename2 = fileName.substring(last + 1, fileName
??????????????????????? .length() - 4);
??????????????? result = filename1 + "," + filename2 + ",file:/" + path + "\\"
??????????????????????? + fileName + ",4,false";
??????????????? System.out.println(result);
??????????? }

??????? }
??? }

??? public List getFileList(String path) {
??????? path = getFormatPath(path);
??????? path = path + "/";
??????? File filePath = new File(path);
??????? if (!filePath.isDirectory()) {
??????????? return null;
??????? }
??????? String[] filelist = filePath.list();
??????? List filelistFilter = new ArrayList();

??????? for (int i = 0; i < filelist.length; i++) {
??????????? String tempfilename = getFormatPath(path + filelist[i]);
??????????? filelistFilter.add(tempfilename);
??????? }
??????? return filelistFilter;
??? }

??? public String getString(Object object) {
??????? if (object == null) {
??????????? return "";
??????? }
??????? return String.valueOf(object);
??? }

??? public String getFormatPath(String path) {
??????? path = path.replaceAll("\\\\", "/");
??????? path = path.replaceAll("//", "/");
??????? return path;
??? }

??? public static void main(String[] args) {
??????? // 插件文件所在目录designer下的目录结构是 eclipse/features and plugins的形式
??????? String plugin = "E:\\jbpm\\jbpm-jpdl-3.2.3\\designer";? //注意:这里一定是文件解压的路径,路径要皮配
??????? new CreatePluginsConfig().print(plugin);
??? }
}

程序运行以后可以产生如下内容

org.jbpm.gd.jpdl.feature,3.1.3.SP2,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/features\org.jbpm.gd.jpdl.feature_3.1.3.SP2\,4,false
org.apache.xerces,2.8.0.v200705301630,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.apache.xerces_2.8.0.v200705301630.jar,4,false
org.apache.xml.resolver,1.1.0.v200705310020,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.apache.xml.resolver_1.1.0.v200705310020.jar,4,false
org.eclipse.draw2d,3.2.100.v20070529,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.draw2d_3.2.100.v20070529.jar,4,false
org.eclipse.emf.common,2.3.2.v200802051830,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.emf.common_2.3.2.v200802051830.jar,4,false
org.eclipse.emf.ecore.change,2.3.0.v200802051830,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.emf.ecore.change_2.3.0.v200802051830.jar,4,false
org.eclipse.emf.ecore.edit,2.3.1.v200802051830,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.emf.ecore.edit_2.3.1.v200802051830.jar,4,false
org.eclipse.emf.ecore.xmi,2.3.2.v200802051830,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.emf.ecore.xmi_2.3.2.v200802051830.jar,4,false
org.eclipse.emf.ecore,2.3.2.v200802051830,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.emf.ecore_2.3.2.v200802051830.jar,4,false
org.eclipse.emf.edit,2.3.2.v200802051830,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.emf.edit_2.3.2.v200802051830.jar,4,false
org.eclipse.gef,3.2.102.v20080116,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.gef_3.2.102.v20080116.jar,4,false
org.eclipse.jem.util,2.0.2.v200802192030,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.jem.util_2.0.2.v200802192030.jar,4,false
org.eclipse.wst.common.core,1.1.101.v200706120315,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.common.core_1.1.101.v200706120315.jar,4,false
org.eclipse.wst.common.emfworkbench.integration,1.1.105.v200802192030,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.common.emfworkbench.integration_1.1.105.v200802192030.jar,4,false
org.eclipse.wst.common.emf,1.1.104.v200709131115,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.common.emf_1.1.104.v200709131115.jar,4,false
org.eclipse.wst.common.environment,1.0.200.v200705302225,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.common.environment_1.0.200.v200705302225.jar,4,false
org.eclipse.wst.common.frameworks,1.1.103.v200802192030,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.common.frameworks_1.1.103.v200802192030.jar,4,false
org.eclipse.wst.common.project.facet.core,1.2.2.v200802200327,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.common.project.facet.core_1.2.2.v200802200327.jar,4,false
org.eclipse.wst.common.ui,1.1.200.v200705302225,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.common.ui_1.1.200.v200705302225.jar,4,false
org.eclipse.wst.common.uriresolver,1.1.203.v200802200327,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.common.uriresolver_1.1.203.v200802200327.jar,4,false
org.eclipse.wst.sse.core,1.1.203.v200802140626,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.sse.core_1.1.203.v200802140626.jar,4,false
org.eclipse.wst.sse.ui,1.0.305.v200802142230,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.sse.ui_1.0.305.v200802142230.jar,4,false
org.eclipse.wst.validation,1.1.102.v200709122200,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.validation_1.1.102.v200709122200.jar,4,false
org.eclipse.wst.xml.core,1.1.202.v200802140626,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.xml.core_1.1.202.v200802140626.jar,4,false
org.eclipse.wst.xml.ui,1.0.302.v200802140626,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.xml.ui_1.0.302.v200802140626.jar,4,false
org.eclipse.wst.xsd.core,1.1.202.v200710011705,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.wst.xsd.core_1.1.202.v200710011705.jar,4,false
org.eclipse.xsd,2.3.2.v200802051830,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.eclipse.xsd_2.3.2.v200802051830.jar,4,false
org.jbpm.gd.jpdl,3.1.3.SP2,file:/E:/jbpm/jbpm-jpdl-3.2.3/designer/eclipse/plugins\org.jbpm.gd.jpdl_3.1.3.SP2.jar,4,false

将上面的内容添加到MyEclipse 7.5\configuration\org.eclipse.equinox.simpleconfigurator文件夹下的 bundles.info后面即可(这里我的路径为C:\Program Files\Genuitec\MyEclipse 7.5\configuration\org.eclipse.equinox.simpleconfigurator)

3,ok,至此我们的myeclipse7.5和jbpm3.2的集成环境已经配置完成,重启myeclipse7.5即可,可以随便写个程序测试一下,我们可以发现在在myeclipse新建工程里面即可见到jbpm了

?

?

原文地址:http://blog.sina.com.cn/s/blog_63b233de0100m8tt.html

  相关解决方案