From 1d4e7dc07b0ef56d852a02ffc6f02df0d28d4549 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期一, 23 八月 2021 16:58:31 +0800
Subject: [PATCH] 优化代码
---
service-common/src/main/java/com/java110/common/api/WorkflowApi.java | 100 +++++++++++++++++++++++---------------------------
1 files changed, 46 insertions(+), 54 deletions(-)
diff --git a/service-common/src/main/java/com/java110/common/api/WorkflowApi.java b/service-common/src/main/java/com/java110/common/api/WorkflowApi.java
index b22b3b9..7f1f6bd 100755
--- a/service-common/src/main/java/com/java110/common/api/WorkflowApi.java
+++ b/service-common/src/main/java/com/java110/common/api/WorkflowApi.java
@@ -1,24 +1,37 @@
package com.java110.common.api;
+import com.alibaba.fastjson.JSONObject;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.java110.common.bmo.workflow.IQueryWorkFlowFirstStaffBMO;
import com.java110.dto.workflow.WorkflowDto;
+import com.java110.dto.workflow.WorkflowModelDto;
+import com.java110.utils.util.BeanConvertUtil;
+import com.java110.vo.ResultVo;
import org.activiti.editor.constants.ModelDataJsonConstants;
import org.activiti.engine.ActivitiException;
+import org.activiti.engine.ProcessEngine;
+import org.activiti.engine.ProcessEngines;
import org.activiti.engine.RepositoryService;
+import org.activiti.engine.RuntimeService;
+import org.activiti.engine.repository.Deployment;
import org.activiti.engine.repository.Model;
import org.apache.batik.transcoder.TranscoderInput;
import org.apache.batik.transcoder.TranscoderOutput;
import org.apache.batik.transcoder.image.PNGTranscoder;
-import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
-import org.springframework.web.bind.annotation.*;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestHeader;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.ResponseStatus;
+import org.springframework.web.bind.annotation.RestController;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
@@ -35,10 +48,13 @@
@Autowired
private ObjectMapper objectMapper;
+
+
String MODEL_ID = "modelId";
String MODEL_NAME = "name";
String MODEL_REVISION = "revision";
String MODEL_DESCRIPTION = "description";
+
@Autowired
@@ -59,53 +75,46 @@
/**
* 鏇存柊娴佺▼
*
- * @param modelId 妯″瀷ID
- * @param name 娴佺▼妯″瀷鍚嶇О
- * @param description
- * @param json_xml 娴佺▼鏂囦欢
- * @param svg_xml 鍥剧墖
+ * @param reqString 妯″瀷ID
+ * @ServiceCode /workflow/saveModel
*/
- @RequestMapping(value = "/model/{modelId}/save", method = RequestMethod.PUT)
+ @RequestMapping(value = "/saveModel", method = RequestMethod.POST)
@ResponseStatus(value = HttpStatus.OK)
- public void saveModel(@PathVariable String modelId
- , String name, String description
- , String json_xml, String svg_xml) {
- try {
- Model model = repositoryService.getModel(modelId);
- ObjectNode modelJson = (ObjectNode) objectMapper.readTree(model.getMetaInfo());
- modelJson.put(MODEL_NAME, name);
- modelJson.put(MODEL_DESCRIPTION, description);
- modelJson.put(ModelDataJsonConstants.MODEL_REVISION, model.getVersion() + 1);
- model.setMetaInfo(modelJson.toString());
- model.setName(name);
- repositoryService.saveModel(model);
- repositoryService.addModelEditorSource(model.getId(), json_xml.getBytes("utf-8"));
+ public ResponseEntity<String> saveModel(
+ @RequestBody String reqString) {
+ JSONObject reqJson = JSONObject.parseObject(reqString);
+ WorkflowModelDto workflowModelDto = BeanConvertUtil.covertBean(reqJson, WorkflowModelDto.class);
- InputStream svgStream = new ByteArrayInputStream(svg_xml.getBytes("utf-8"));
- TranscoderInput input = new TranscoderInput(svgStream);
+ //閮ㄧ讲model
+ return queryWorkFlowFirstStaffBMOImpl.saveModel(workflowModelDto);
- PNGTranscoder transcoder = new PNGTranscoder();
- // Setup output
- ByteArrayOutputStream outStream = new ByteArrayOutputStream();
- TranscoderOutput output = new TranscoderOutput(outStream);
+ }
- // Do the transformation
- transcoder.transcode(input, output);
- final byte[] result = outStream.toByteArray();
- repositoryService.addModelEditorSourceExtra(model.getId(), result);
- outStream.close();
- } catch (Exception e) {
- logger.error("Error saving model", e);
- throw new ActivitiException("Error saving model", e);
- }
+ /**
+ * 閮ㄧ讲娴佺▼
+ *
+ * @param reqString 妯″瀷ID
+ * @ServiceCode /workflow/deployModel
+ */
+ @RequestMapping(value = "/deployModel", method = RequestMethod.POST)
+ @ResponseStatus(value = HttpStatus.OK)
+ public ResponseEntity<String> deployModel(
+ @RequestBody String reqString) {
+ JSONObject reqJson = JSONObject.parseObject(reqString);
+ WorkflowModelDto workflowModelDto = BeanConvertUtil.covertBean(reqJson, WorkflowModelDto.class);
+
+ //閮ㄧ讲model
+ return queryWorkFlowFirstStaffBMOImpl.deployModel(workflowModelDto);
+
}
/**
* 鑾峰彇model鐨勮妭鐐逛俊鎭紝缂栬緫鍣ㄦ牴鎹繑鍥炵殑json杩涜缁樺浘
- * @ServiceCode /workflow/getEditorJson
+ *
* @param modelId
* @return
+ * @ServiceCode /workflow/getEditorJson
*/
@SuppressWarnings("deprecation")
@RequestMapping(value = "/getEditorJson", method = RequestMethod.GET)
@@ -130,23 +139,6 @@
}
}
return new ResponseEntity(modelNode.toString(), HttpStatus.OK);
- }
-
- /**
- * 鑾峰彇缂栬緫鍣ㄧ粍浠跺強閰嶇疆椤逛俊鎭�
- * 鑾峰彇娴佺▼json鏂囦欢
- *
- * @return
- */
- @RequestMapping(value = "/editor/stencilset", method = RequestMethod.GET, produces = "application/json;charset=utf-8")
- @ResponseBody
- public String getStencilset() {
- InputStream stencilsetStream = this.getClass().getClassLoader().getResourceAsStream("stencilset.json");
- try {
- return IOUtils.toString(stencilsetStream, "utf-8");
- } catch (Exception e) {
- throw new ActivitiException("Error while loading stencil set", e);
- }
}
--
Gitblit v1.8.0