溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringBoot2整合activiti6環(huán)境的搭建方法

發(fā)布時(shí)間:2021-02-07 14:23:08 來源:億速云 閱讀:243 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關(guān)SpringBoot2整合activiti6環(huán)境的搭建方法的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

依賴

<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驅(qū)動(dòng) -->
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
    </dependency>
  </dependencies>

這里使用的springboot2.0.6的版本,activiti為6.0.0的版本

添加processes目錄

SpringBoot2整合activiti6環(huán)境的搭建方法

SpringBoot集成activiti默認(rèn)會(huì)從classpath下的processes目錄下讀取流程定義文件,所以需要在src/main/resources目錄下添加processes目錄,并在目錄中創(chuàng)建流程文件

application.yml

spring:
 activiti:
  check-process-definitions: true #自動(dòng)檢查、部署流程定義文件
  database-schema-update: true #自動(dòng)更新數(shù)據(jù)庫結(jié)構(gòu)
  #流程定義文件存放目錄
  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>

啟動(dòng)類,注意@SpringBootApplication注解需要設(shè)置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);
  }
}

感謝各位的閱讀!關(guān)于“SpringBoot2整合activiti6環(huán)境的搭建方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI