您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“springboot+camunda如何實現工作流”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“springboot+camunda如何實現工作流”這篇文章吧。
1.在camunda modeler工具里面寫流程,任務執行指明Java類
2.保存文件放在resources目錄下,并建立一個processes.xml的空文件
3.依賴配置
<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依賴 --> <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配置:建立一個空數據庫既可以,運行后會自動建表
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 #指定數據庫類型 database: type: mysql #自動部署resources下面的bpmn文件 auto-deployment-enabled: true #禁止index跳轉到Camunda自帶的管理界面,默認true # webapp: # index-redirect-enabled: false
5.編寫任務中的Java執行類
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 #指定數據庫類型 database: type: mysql #自動部署resources下面的bpmn文件 auto-deployment-enabled: true #禁止index跳轉到Camunda自帶的管理界面,默認true # webapp: # index-redirect-enabled: false
6.登錄執行,點擊tasklist,
7.結果:已經成功執行任務
以上是“springboot+camunda如何實現工作流”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。