|
@@ -136,42 +136,42 @@ public class Application extends WebMvcConfigurerAdapter implements CommandLineR
|
|
|
|
|
|
@Override
|
|
|
public void run(String... strings) throws Exception {
|
|
|
-// String basePath = "/Users/hujie/Documents/dev/git-repo/taiji/tianjin-cgw/zyml/cn.com.taiji.system/src/main/resources/static/diagrams";
|
|
|
-//// 1、创建ProcessEngine
|
|
|
-// ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
|
|
|
-//// 2、得到RepositoryService实例
|
|
|
-// RepositoryService repositoryService = processEngine.getRepositoryService();
|
|
|
-//// 3、使用RepositoryService进行部署
|
|
|
-// Deployment deployment = repositoryService.createDeployment()
|
|
|
-// .addInputStream("dataPreparation.bpmn", new FileInputStream(new File(basePath + "/dataPreparation.bpmn")))
|
|
|
-// .addInputStream("dataPreparation.png", new FileInputStream(new File(basePath + "/dataPreparation.png")))
|
|
|
-// .name("dataPreparation")
|
|
|
-// .deploy();
|
|
|
-// deployment = repositoryService.createDeployment()
|
|
|
-// .addInputStream("fwSq.bpmn", new FileInputStream(new File(basePath + "/fwSq.bpmn")))
|
|
|
-// .addInputStream("fwSq.png", new FileInputStream(new File(basePath + "/fwSq.png")))
|
|
|
-// .name("服务申请")
|
|
|
-// .deploy();
|
|
|
-// deployment = repositoryService.createDeployment()
|
|
|
-// .addInputStream("fwZc.bpmn", new FileInputStream(new File(basePath + "/fwZc.bpmn")))
|
|
|
-// .addInputStream("fwZc.png", new FileInputStream(new File(basePath + "/fwZc.png")))
|
|
|
-// .name("服务注册")
|
|
|
-// .deploy();
|
|
|
-// deployment = repositoryService.createDeployment()
|
|
|
-// .addInputStream("infoClassZc.bpmn", new FileInputStream(new File(basePath + "/infoClassZc.bpmn")))
|
|
|
-// .addInputStream("infoClassZc.png", new FileInputStream(new File(basePath + "/infoClassZc.png")))
|
|
|
-// .name("信息类注册")
|
|
|
-// .deploy();
|
|
|
-// deployment = repositoryService.createDeployment()
|
|
|
-// .addInputStream("requireInfo.bpmn", new FileInputStream(new File(basePath + "/requireInfo.bpmn")))
|
|
|
-// .addInputStream("requireInfo.png", new FileInputStream(new File(basePath + "/requireInfo.png")))
|
|
|
-// .name("requireInfo")
|
|
|
-// .deploy();
|
|
|
-// deployment = repositoryService.createDeployment()
|
|
|
-// .addInputStream("shareApply.bpmn", new FileInputStream(new File(basePath + "/shareApply.bpmn")))
|
|
|
-// .addInputStream("shareApply.png", new FileInputStream(new File(basePath + "/shareApply.png")))
|
|
|
-// .name("信息类共享")
|
|
|
-// .deploy();
|
|
|
+// String basePath = "src/main/resources/diagrams";
|
|
|
+// 1、创建ProcessEngine
|
|
|
+ ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
|
|
|
+// 2、得到RepositoryService实例
|
|
|
+ RepositoryService repositoryService = processEngine.getRepositoryService();
|
|
|
+// 3、使用RepositoryService进行部署
|
|
|
+ Deployment deployment = repositoryService.createDeployment()
|
|
|
+ .addInputStream("dataPreparation.bpmn", this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "dataPreparation.bpmn"))
|
|
|
+ .addInputStream("dataPreparation.png", this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "dataPreparation.png"))
|
|
|
+ .name("dataPreparation")
|
|
|
+ .deploy();
|
|
|
+ deployment = repositoryService.createDeployment()
|
|
|
+ .addInputStream("fwSq.bpmn",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "fwSq.bpmn"))
|
|
|
+ .addInputStream("fwSq.png",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "fwSq.png"))
|
|
|
+ .name("服务申请")
|
|
|
+ .deploy();
|
|
|
+ deployment = repositoryService.createDeployment()
|
|
|
+ .addInputStream("fwZc.bpmn",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "fwZc.bpmn"))
|
|
|
+ .addInputStream("fwZc.png",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "fwZc.png"))
|
|
|
+ .name("服务注册")
|
|
|
+ .deploy();
|
|
|
+ deployment = repositoryService.createDeployment()
|
|
|
+ .addInputStream("infoClassZc.bpmn",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "infoClassZc.bpmn"))
|
|
|
+ .addInputStream("infoClassZc.png",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "infoClassZc.png"))
|
|
|
+ .name("信息类注册")
|
|
|
+ .deploy();
|
|
|
+ deployment = repositoryService.createDeployment()
|
|
|
+ .addInputStream("requireInfo.bpmn",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "requireInfo.bpmn"))
|
|
|
+ .addInputStream("requireInfo.png",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "requireInfo.png"))
|
|
|
+ .name("requireInfo")
|
|
|
+ .deploy();
|
|
|
+ deployment = repositoryService.createDeployment()
|
|
|
+ .addInputStream("shareApply.bpmn",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "shareApply.bpmn"))
|
|
|
+ .addInputStream("shareApply.png",this.getClass().getClassLoader().getResourceAsStream("diagrams" + File.separator + "shareApply.png"))
|
|
|
+ .name("信息类共享")
|
|
|
+ .deploy();
|
|
|
}
|
|
|
|
|
|
@Bean
|