Browse Source

审核提交失败,启动时工作流引擎实例注册

guoyuanquan@mail.taiji.com.cn 8 months ago
parent
commit
2361c8e864

+ 36 - 36
cn.com.taiji.myapp/src/main/java/cn/com/taiji/Application.java

@@ -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

File diff suppressed because it is too large
+ 120 - 0
cn.com.taiji.myapp/src/main/resources/diagrams/dataPreparation.bpmn


BIN
cn.com.taiji.myapp/src/main/resources/diagrams/dataPreparation.png


File diff suppressed because it is too large
+ 201 - 0
cn.com.taiji.myapp/src/main/resources/diagrams/fwSq.bpmn


BIN
cn.com.taiji.myapp/src/main/resources/diagrams/fwSq.png


File diff suppressed because it is too large
+ 90 - 0
cn.com.taiji.myapp/src/main/resources/diagrams/fwZc.bpmn


BIN
cn.com.taiji.myapp/src/main/resources/diagrams/fwZc.png


File diff suppressed because it is too large
+ 103 - 0
cn.com.taiji.myapp/src/main/resources/diagrams/infoClassZc.bpmn


BIN
cn.com.taiji.myapp/src/main/resources/diagrams/infoClassZc.png


File diff suppressed because it is too large
+ 210 - 0
cn.com.taiji.myapp/src/main/resources/diagrams/requireInfo.bpmn


BIN
cn.com.taiji.myapp/src/main/resources/diagrams/requireInfo.png


File diff suppressed because it is too large
+ 215 - 0
cn.com.taiji.myapp/src/main/resources/diagrams/shareApply.bpmn


BIN
cn.com.taiji.myapp/src/main/resources/diagrams/shareApply.png