1、在官网上下载jbpm-jpdl-suite-3.2.3.zip包,这个包里包括jbpm的相关文件,以及图形化编辑器
2、加压缩jbpm-jpdl-suite-3.2.3.zip在你的硬盘上。
3、启动myeclipse8.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);
}
}
4、运行上面代码后,控制台会有如下结果:
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
5、将结果拷贝到MyEclipse 8.5/configuration/org.eclipse.equinox.simpleconfigurator文件夹下的 bundles.info后面即可
6、好了!重新启动MyEclipse8.5,你在创建project的时候就可以看见,可以建Jbpm工程了。
7、当创建Definition时会跳出一个文本框,name随便填,Location填jbpm-jpdl-suite-3.2.3.zip包解压后的地址。下一步。。。。下一步。。。。搞定!
本文介绍如何在MyEclipse8.5中配置JBPM流程设计器,包括下载并解压JBPM套件、运行代码获取插件配置信息及配置MyEclipse。
566

被折叠的 条评论
为什么被折叠?



