溫馨提示×

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

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

springboot+camunda如何實(shí)現(xiàn)工作流

發(fā)布時(shí)間:2021-12-29 12:43:16 來(lái)源:億速云 閱讀:653 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要為大家展示了“springboot+camunda如何實(shí)現(xiàn)工作流”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“springboot+camunda如何實(shí)現(xiàn)工作流”這篇文章吧。

1.在camunda modeler工具里面寫(xiě)流程,任務(wù)執(zhí)行指明Java類(lèi)

springboot+camunda如何實(shí)現(xiàn)工作流

2.保存文件放在resources目錄下,并建立一個(gè)processes.xml的空文件

springboot+camunda如何實(shí)現(xiàn)工作流

3.依賴(lài)配置

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <!-- camunda依賴(lài) -->
        <dependency>
            <groupId>org.camunda.bpm.springboot</groupId>
            <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
            <version>3.4.1</version>
        </dependency>
        <dependency>
            <groupId>com.h3database</groupId>
            <artifactId>h3</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
    </dependencies>

4.yml配置:建立一個(gè)空數(shù)據(jù)庫(kù)既可以,運(yùn)行后會(huì)自動(dòng)建表

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/camunda
    username: root
    password: root
camunda:
  bpm:
    admin-user:
      id: admin
      password: admin
      first-name: admin
    filter:
      create: All tasks
    #指定數(shù)據(jù)庫(kù)類(lèi)型
      database:
          type: mysql
    #自動(dòng)部署resources下面的bpmn文件
    auto-deployment-enabled: true
    #禁止index跳轉(zhuǎn)到Camunda自帶的管理界面,默認(rèn)true
#    webapp:
#      index-redirect-enabled: false

5.編寫(xiě)任務(wù)中的Java執(zhí)行類(lèi)

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/camunda
    username: root
    password: root
camunda:
  bpm:
    admin-user:
      id: admin
      password: admin
      first-name: admin
    filter:
      create: All tasks
    #指定數(shù)據(jù)庫(kù)類(lèi)型
      database:
          type: mysql
    #自動(dòng)部署resources下面的bpmn文件
    auto-deployment-enabled: true
    #禁止index跳轉(zhuǎn)到Camunda自帶的管理界面,默認(rèn)true
#    webapp:
#      index-redirect-enabled: false

6.登錄執(zhí)行,點(diǎn)擊tasklist,

springboot+camunda如何實(shí)現(xiàn)工作流

springboot+camunda如何實(shí)現(xiàn)工作流

springboot+camunda如何實(shí)現(xiàn)工作流

7.結(jié)果:已經(jīng)成功執(zhí)行任務(wù)

springboot+camunda如何實(shí)現(xiàn)工作流

以上是“springboot+camunda如何實(shí)現(xiàn)工作流”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

AI