午夜爽爽爽,欧美亚洲国产一区二区三区,男和女一起怼怼怼30分钟,国产一级αv片免费观看

焦點速看:Springboot整合Camunda工作流引擎實現審批流程實例

環境:Spingboot2.6.14+camunda-spring-boot-starter7.18.0環境配置依賴配置7.18.0org.camunda

環境:Spingboot2.6.14 +camunda-spring-boot-starter7.18.0

環境配置

依賴配置


(資料圖片僅供參考)

7.18.0  org.camunda.bpm.springboot  camunda-bpm-spring-boot-starter-webapp  ${camunda.version}  org.camunda.bpm.springboot  camunda-bpm-spring-boot-starter-rest  ${camunda.version}

應用程序配置

camunda.bpm:  webapp:    # 設置管理控制臺的訪問上下文    application-path: /workflow  auto-deployment-enabled: true  admin-user:    # 配置登錄管理控制臺的用戶    id: admin    password: admin    firstName: admin  filter:    create: All tasks  database:    #數據庫類型    type: mysql     #是否自動更新表信息    schema-update: truelogging:  level:    #配置日志,這樣在開發過程中就能看到每步執行的SQL語句了    "[org.camunda.bpm.engine.impl.persistence.entity]": debug---spring:  jersey:    application-path: /api-flow    type: servlet    servlet:      load-on-startup: 0

通過上面的配置后訪問控制臺:http://localhost:8100/workflow/

默認是沒有上面的tasks中的內容,這里是我之前測試數據

環境準備好后,接下來就可以設計工作流程。

上面的camunda-bpm-spring-boot-starter-rest依賴中定義了一系列操作camunda的 rest api 這api的實現是通過jersey實現,我們可以通過/api-flow前綴來訪問這些接口,具體有哪些接口,我們可以通過官方提供的camunda-bpm-run-7.18.0.zip

http://localhost:8080/swaggerui/#/

設計流程

這里設計兩個節點的審批流程,經理審批---》人事審批 流程。

經理審批節點

人事審批節點

上面配置了2個用戶任務節點,并且為每個任務節點都設置了表達式,指定節點的審批人。

最終生成的流程XML內容如下:

            Flow_18pxcpx                  Flow_18pxcpx      Flow_0n014x3                  Flow_0n014x3      Flow_0dsfy6s              Flow_0dsfy6s                                                                                                                                                                                          
部署流程

這里我不通過上面的rest api 進行部署,而是通過自定義的接口然后調用camunda的相關api來實現流程部署。

上面的流程設計我是通過vue整合的camunda進行設計,并沒有使用官方提供的設計器。設計完成后直接上傳到服務端。

接口
@RestController@RequestMapping("/camunda")public class BpmnController {  // 上傳路徑  @Value("${gx.camunda.upload}")  private String path ;    // 通用的工作流操作api服務類  @Resource  private ProcessService processService ;    @PostMapping("/bpmn/upload")  public AjaxResult uploadFile(MultipartFile file, String fileName, String name) throws Exception {    try {      // 上傳并返回新文件名稱      InputStream is = file.getInputStream() ;      File storageFile = new File(path + File.separator + fileName) ;      FileOutputStream fos = new FileOutputStream(new File(path + File.separator + fileName)) ;      byte[] buf = new byte[10 * 1024] ;      int len = -1 ;      while((len = is.read(buf)) > -1) {        fos.write(buf, 0, len) ;      }      fos.close() ;      is.close() ;      // 創建部署流程      processService.createDeploy(fileName, name, new FileSystemResource(storageFile)) ;      return AjaxResult.success();    } catch (Exception e) {      return AjaxResult.error(e.getMessage());    }  }}
部署流程Service
// 這個是camunda spring boot starter 自動配置@Resourceprivate RepositoryService repositoryService ;public void createDeploy(String resourceName, String name, org.springframework.core.io.Resource resource) {  try {    Deployment deployment = repositoryService.createDeployment()      .addInputStream(resourceName, resource.getInputStream())      .name(name)      .deploy();    logger.info("流程部署id: {}", deployment.getId());    logger.info("流程部署名稱: {}", deployment.getName());  } catch (IOException e) {    throw new RuntimeException(e) ;  }}

執行上面的接口就能將上面設計的流程部署到camunda中(其實就是將流程文件保存到了數據庫中,對應的數據表是:act_ge_bytearray)。

啟動流程

啟動流程還是一樣,通過我們自己的接口來實現。

接口
@RestController@RequestMapping("/process")public class ProcessController {  @Resource  private ProcessService processService ;    // 根據流程定義id,啟動流程;整個流程需要動態傳2個參數(審批人),如果不傳將會報錯  @GetMapping("/start/{processDefinitionId}")  public AjaxResult startProcess(@PathVariable("processDefinitionId") String processDefinitionId) {    Map variables = new HashMap<>() ;    variables.put("uid", "1") ;    variables.put("mid", "1000") ;    processService.startProcessInstanceAssignVariables(processDefinitionId, "AKF", variables) ;    return AjaxResult.success("流程啟動成功") ;  }}
服務Service接口
@Resourceprivate RuntimeService runtimeService ;public ProcessInstance startProcessInstanceAssignVariables(String processDefinitionId, String businessKey, Map variables) {  ProcessInstance processInstance = runtimeService.startProcessInstanceById(processDefinitionId, businessKey, variables);  logger.info("流程定義ID: {}", processInstance.getProcessDefinitionId());  logger.info("流程實例ID: {}", processInstance.getId());  logger.info("BussinessKey: {}", processInstance.getBusinessKey()) ;  return processInstance ;}

流程啟動后就可以查看當前需要自己審批的所有審批單

接口實現
@Resourceprivate TaskService taskService ;@Resourceprivate ManagementService managementService ;// 根據時間段查詢public List queryTasksByBusinessAndCreateTime(String assignee, String businessKey, String startTime, String endTime) {  NativeTaskQuery nativeQuery = taskService.createNativeTaskQuery() ;  nativeQuery.sql("select distinct RES.* from " + managementService.getTableName(TaskEntity.class) +  " RES "                  + " left join " + managementService.getTableName(IdentityLinkEntity.class) + " I on I.TASK_ID_ = RES.ID_ "                  + " WHERE (RES.ASSIGNEE_ = #{assignee} or "                  + " (RES.ASSIGNEE_ is null and I.TYPE_ = "candidate" "                  + " and (I.USER_ID_ = #{assignee} or I.GROUP_ID_ IN ( #{assignee} ) ))) "                  + " and RES.CREATE_TIME_ between #{startTime} and #{endTime} "                  + " order by RES.CREATE_TIME_ asc LIMIT #{size} OFFSET 0") ;  nativeQuery.parameter("assignee", assignee) ;  nativeQuery.parameter("startTime", startTime) ;  nativeQuery.parameter("endTime", endTime) ;  nativeQuery.parameter("size", Integer.MAX_VALUE) ;  return nativeQuery.list() ;}
審批流程

流程啟動后,接下來就是各個用戶任務節點配置的用戶進行審批

接口
@GetMapping("/approve/{id}")public AjaxResult approve(@PathVariable("id") String instanceId) {  if (StringUtils.isEmpty(instanceId)) {    return AjaxResult.error("未知審批任務") ;  }  // 下面的參數信息應該自行保存管理(與發起審批設置的指派人要一致)  Map variables = new HashMap<>() ;  // 第一個節點所要提供的遍歷信息(這里就是依次類推,mid等)  variables.put("uid", "1") ;  processService.executionTask(variables, instanceId, task -> {}, null) ;  return AjaxResult.success() ; }
服務Service接口
@Resourceprivate TaskService taskService ;@Resourceprivate RuntimeService runtimeService ;@Transactionalpublic void executionTask(Map variables, String instanceId, Consumer consumer, String type) {  Task task = taskService.createTaskQuery().processInstanceId(instanceId).singleResult() ;  if (task == null) {    logger.error("任務【{}】不存在", instanceId) ;    throw new RuntimeException("任務【" + instanceId + "】不存在") ;  }  taskService.setVariables(task.getId(), variables);  taskService.complete(task.getId(), variables) ;  long count = runtimeService.createExecutionQuery().processInstanceId(instanceId).count();  if (count == 0) {    consumer.accept(task) ;  }}

以上就完成了從整個流程的生命周期:

設計流程---》部署流程---》啟動流程---》審批流程

完畢!!!

關鍵詞:
責任編輯:hn1007
主站蜘蛛池模板: 无翼乌全彩本子lovelive摄影| 全彩本子里番调教仆人| 午夜精品在线免费观看| 亚洲精品国产精品乱码不卞 | 国产综合亚洲专区在线| 天天天天做夜夜夜做| 韩国理伦大片三女教师| 人妖在线| 国产精品久久国产精品99| 丁香六月婷婷精品免费观看| 美国一级毛片免费看| 日韩三级网址| 久久66热这里只会有精品| 久久这里只精品99re免费| 久久国产加勒比精品无码| 日本精品久久久久中文字幕| 美女被爆羞羞视频网站视频| 好男人官网资源在线观看 | 亚洲宅男天堂| 全彩里番acg里番本子| 日本阿v视频高清在线中文 | 韩国出轨的女人| 色噜噜狠狠狠狠色综合久| 穿透明白衬衫喷奶水在线播放| 免费看的一级毛片| 久久本网站受美利坚法律保护| 国产高清免费在线| 欧美一级片手机在线观看| 香港三级韩国三级人妇三| 久久久久久久国产精品电影| 国产va在线播放| 高清欧美性暴力猛交| 成年在线观看免费人视频草莓| 黄色a级| 久久精品国产一区二区三区肥胖| jux434被公每天侵犯的我| 国产嫩草在线观看| 天天干天天射天天操| 小嫩妇又紧又嫩好紧视频 | 国产又色又爽在线观看| 国产99视频精品免视看7 |