SpringBoot 2 통합 activiti 6 환경 구축 과정 분석

이 글 은 주로 SpringBoot 2 통합 activiti 6 환경 구축 과정 에 대한 분석 을 소개 하 였 으 며,예시 코드 를 통 해 매우 상세 하 게 소개 하 였 으 며,여러분 의 학습 이나 업무 에 대해 어느 정도 참고 학습 가 치 를 가지 고 있 으 므 로 필요 한 분 들 은 참고 하 시기 바 랍 니 다.
의지 하 다

<dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
      <groupId>org.activiti</groupId>
      <artifactId>activiti-spring-boot-starter-basic</artifactId>
      <version>${activiti.version}</version>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-jdbc</artifactId>
    </dependency>
    <!-- mysql   -->
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
    </dependency>
  </dependencies>
여기 사 용 된 spring boot 2.0.6 버 전,activiti 6.0.0 버 전 입 니 다.
프로 세 스 디 렉 터 리 추가

SpringBoot 통합 activiti 는 기본적으로 classpath 의 processes 디 렉 터 리 에서 프로 세 스 정의 파일 을 읽 기 때문에 src/main/resources 디 렉 터 리 에 processes 디 렉 터 리 를 추가 하고 디 렉 터 리 에 프로 세 스 파일 을 만들어 야 합 니 다.
application.yml

spring:
 activiti:
  check-process-definitions: true #    、        
  database-schema-update: true #         
  #          
  process-definition-location-prefix: classpath:/processes/ 
  #process-definition-location-suffixes: #      
 datasource:
  driver-class-name: com.mysql.jdbc.Driver
  url: jdbc:mysql://127.0.0.1:3306/taosir_process?useUnicode=true&useSSL=false&characterEncoding=utf8
  username : root
  password : root
  initsize : 10
  maxActive : 20
  minIdle : 10
  maxWait : 120000
  poolPreparedStatements : false
  maxOpenPreparedStatements : -1
  validationQuery : select 1
  testOnborrow : true
  testOnReturn : true
  testWhileIdle : true
  timeBetweenEvictionRunsMillis : 120000
server:
 port: 8764
bpmn 파일

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:tns="Examples" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.w3.org/1999/XPath" id="m1539757531057" name="" targetNamespace="Examples" typeLanguage="http://www.w3.org/2001/XMLSchema">
 <process id="oneTaskProcess" isClosed="false" name="The One Task Process" processType="None">
  <startEvent id="theStart"/>
  <sequenceFlow id="flow1" sourceRef="theStart" targetRef="theTask"/>
  <userTask activiti:assignee="${user}" activiti:exclusive="true" id="theTask" name="my task"/>
  <sequenceFlow id="flow2" sourceRef="theTask" targetRef="theEnd"/>
  <endEvent id="theEnd"/>
 </process>
</definitions>
시작 클래스,주의@SpringBootApplication 설명 은 exclude 속성 을 설정 해 야 합 니 다.

package cn.zytao.taosir.process;
import org.activiti.spring.boot.SecurityAutoConfiguration;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication(exclude = SecurityAutoConfiguration.class)
public class ProcessApplication {
  public static void main(String[] args) {
    SpringApplication.run(ProcessApplication.class, args);
  }
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기