Flowable 工作流集成到 Spring Boot 工程

Flowable Spring Boot About 773 words

添加依赖

全部功能

包含所有Flowable引擎的功能:ProcessCMMNDMNIDM

<dependency>
    <groupId>org.flowable</groupId>
    <artifactId>flowable-spring-boot-starter</artifactId>
    <version>7.0.0</version>
</dependency>

Process

仅添加Process工作流引擎。

<dependency>
    <groupId>org.flowable</groupId>
    <artifactId>flowable-spring-boot-starter-process</artifactId>
    <version>7.0.0</version>
</dependency>

配置数据库

H2嵌入式数据库为例。

spring:
  datasource: # https://www.h2database.com/html/features.html
    name: flowable-demo
    url: jdbc:h2:file:./${spring.datasource.name}
    driver-class-name: org.h2.Driver
    username: sa
    password:
  h2:
    console:
      enabled: true
      path: /h2-console
Views: 120 · Posted: 2024-03-13

————        END        ————

Give me a Star, Thanks:)

https://github.com/fendoudebb/LiteNote

扫描下方二维码关注公众号和小程序↓↓↓

扫描下方二维码关注公众号和小程序↓↓↓


Today On History
Browsing Refresh