SpringBoot 입문 15,Activiti 5.22 워 크 플 로 온라인 편집기 추가

4856 단어 자바activiti
온라인 편집 기 는 springMVC 통합 activiti-explorer 5.22(1)의 2,3,4 단계,그리고 springMVC 통합 activiti-explorer 5.22(2)의 설정 을 직접 참고 할 수 있 습 니 다.기본 통합 이 기본적으로 완료 되 었 습 니 다.여기 서 springboot 에서 수정 해 야 할 곳 에 중심 을 두 고 말씀 드 리 겠 습 니 다.
1.ModelSaveRestResource.java 클래스 수정
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;

import org.activiti.editor.constants.ModelDataJsonConstants;
import org.activiti.engine.ActivitiException;
import org.activiti.engine.RepositoryService;
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.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.util.MultiValueMap;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
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 com.alibaba.fastjson.JSONObject;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;

@RestController
@RequestMapping(value = "/service")
public class ModelSaveRestResource implements ModelDataJsonConstants {

    private static final Logger LOGGER = LogManager.getLogger(ModelSaveRestResource.class);

    @Autowired
    private RepositoryService repositoryService;

    @Autowired
    private ObjectMapper objectMapper;

    @RequestMapping(value = "/model/{modelId}/save", method = RequestMethod.PUT)
    @ResponseStatus(value = HttpStatus.OK)
    public void saveModel(@PathVariable String modelId, @RequestParam("name") String name,
            @RequestParam("json_xml") String json_xml, @RequestParam("svg_xml") String svg_xml,
            @RequestParam("description") String description) {
        try {
            Model model = repositoryService.getModel(modelId);
            ObjectNode modelJson = (ObjectNode) objectMapper.readTree(model.getMetaInfo());

            modelJson.put(MODEL_NAME, name);
            modelJson.put(MODEL_DESCRIPTION, description);
            model.setMetaInfo(modelJson.toString());
            model.setName(name);

            repositoryService.saveModel(model);
            repositoryService.addModelEditorSource(model.getId(),json_xml.getBytes("utf-8"));

            InputStream svgStream = new ByteArrayInputStream(svg_xml.getBytes("utf-8"));
            TranscoderInput input = new TranscoderInput(svgStream);

            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);
        }
    }
}

2.stencilset.json 파일 가 져 오기 위치 수정
Springboot 에서 정적 파일 은 모두 resources/static 에 놓 여 있 기 때문에 Stencilset RestResource.java 에서 파일 을 가 져 오 는 위 치 를 수정 해 야 합 니 다.다음 과 같 으 면 됩 니 다.
InputStream stencilsetStream = getClass().getClassLoader().getResourceAsStream("static/activiti/stencilset.json");

3.플 로 차 트 중국어 저장 오류 해결
CustomActivity config.java 의 설정 클래스 를 새로 만 들 면 됩 니 다.코드 는 다음 과 같 습 니 다.
import org.activiti.spring.SpringProcessEngineConfiguration;
import org.activiti.spring.boot.ProcessEngineConfigurationConfigurer;
import org.springframework.stereotype.Component;

@Component
public class CustomActivitiConfig implements ProcessEngineConfigurationConfigurer {

    /**
     * Overriding
     * 
: ,
* @param processEngineConfiguration */ @Override public void configure(SpringProcessEngineConfiguration processEngineConfiguration) { processEngineConfiguration.setActivityFontName(" "); processEngineConfiguration.setLabelFontName(" "); processEngineConfiguration.setAnnotationFontName(" "); } }

이로써 통합 이 끝났다.

좋은 웹페이지 즐겨찾기