Camunda 3、SpringBoot Camunda bpmn.xml 工作流部署操作

一、SpringBoot 部署 bpmn.xml

1、Controller 接口类:WorkflowDeploymentController

package com.fight.strive.sys.modules.camunda.controller;

import com.fight.strive.sys.modules.camunda.dto.WorkflowDeploymentDto;
import com.fight.strive.sys.modules.camunda.service.WorkflowDeploymentService;
import com.fight.strive.sys.modules.request.annotation.RestPostMapping;
import com.fight.strive.sys.modules.request.dto.PageRequest;
import com.fight.strive.sys.modules.response.dto.PageData;
import com.fight.strive.sys.modules.response.dto.ResponseStatusDto;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.multipart.MultipartFile;

import javax.annotation.Resource;
import java.util.Map;

/**
 * @author ZHOUXIANG
 */
@C

猜你喜欢

转载自blog.csdn.net/zxstrive/article/details/109097691
今日推荐