参考文档:https://tkjohn.github.io/flowable-userguide/#springSpringBoot
课件代码:https://gitee.com/flymini/codes01/tree/master/flowable_/learn-flowable04
****
<br/>
建议:MySQL5.7+,如果MySQL低于5.7可能会报异常。
<br/>
整合步骤如下:
**1. 创建一个SpringBoot项目,`pom.xml`如下**
```xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.12.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>6.3.0</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.18</version>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>4.4.0</version>
</dependency>
<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>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
```
**2. `resources/application.yml`**
```yml
spring:
datasource:
url: jdbc:mysql://localhost:3307/flowable_springboot?characterEncoding=utf8&useSSL=false&serverTimezone=UTC
username: root
password: uhg</flEt3dff
type: com.zaxxer.hikari.HikariDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
liquibase:
enabled: false #不需要每次启动都检查数据库版本信息
flowable:
database-schema-update: true #数据库更新策略,true-表存在则使用,不存在则自动创建
db-history-used: true #true-表示记录历史信息
history-level: full #记录的历史级别,full-最高级别,所有数据都记录为历史
async-executor-activate: false #关闭异步任务
check-process-definitions: false #false-不开启自动部署
#如果开启自动部署,当流程在目录`resources/processes/*.bpmn`时会自动将流程部署到数据库
```
更多配置参考:https://tkjohn.github.io/flowable-userguide/#springBootFlowableProperties
**3. 配置引擎**
```java
@Configuration
public class FlowableConfig implements EngineConfigurationConfigurer<SpringProcessEngineConfiguration> {
/**
* 防止生成的流程图片中文乱码
*/
@Override
public void configure(SpringProcessEngineConfiguration engineConfiguration) {
engineConfiguration.setActivityFontName("宋体");
engineConfiguration.setLabelFontName("宋体");
engineConfiguration.setAnnotationFontName("宋体");
}
}
```
**4. 运行启动类**
当运行启动类时,Flowable 会自动在数据库中建表。
```java
@SpringBootApplication
public class FlowableBootApplication {
public static void main(String[] args) {
SpringApplication.run(FlowableBootApplication.class, args);
}
}
```
**5. 获取各种服务接口了**
```java
@SpringBootTest
class FlowableBootApplicationTests {
@Autowired
private RepositoryService repositoryService;
@Autowired
private RuntimeService runtimeService;
@Autowired
private TaskService taskService;
@Autowired
private HistoryService historyService;
@Autowired
private ManagementService managementService;
@Test
void contextLoads() {
//成功拿到服务接口org.flowable.engine.impl.RepositoryServiceImpl@1f229c40
System.out.println(repositoryService);
}
}
```
- Activiti流程引擎
- 工作流介绍
- Activiti是什么
- Activiti流程处理步骤
- Activiti环境搭建
- 搭建步骤
- 表结构介绍
- ActivitiAPI结构
- 认识流程符号
- 流程设计器的使用
- 流程处理步骤
- 乱码问题
- 流程实例
- 流程实例是什么
- 业务标识
- 查询流程实例
- 挂起/激活流程实例
- 个人任务
- 分配任务负责人
- 查询待办任务
- 办理权限
- 流程变量
- 流程变量类型
- 流程变量作用域
- 使用流程变量控制流程
- 组任务
- 设置任务候选人
- 组任务办理流程
- 网关
- 4种网关类型
- 排他网关
- 并行网关
- 包含网关
- 事件网关
- Spring整合Activiti
- SpringBoot整合Activiti
- Flowable流程引擎
- Flowable是什么
- Flowable与Activiti
- Flowable环境搭建
- FlowableAPI
- 流程引擎API与服务
- 流程处理步骤
- 流程部署
- 流程部署方式
- 流程定义版本
- 删除已部署的流程
- 下载资源
- 流程实例
- 什么是流程实例
- 业务标识
- 查询流程实例
- 挂起/激活流程实例
- 分配任务负责人
- 固定分配
- UEL表达式分配
- 监听器分配
- 办理权限
- 流程变量
- 流程变量类型
- 流程变量作用域
- 流程变量控制流程
- 组任务
- 设置任务候选人
- 组任务办理流程
- 网关
- 排他网关
- 并行网关
- 包含网关
- 事件网关
- 历史查询
- 查询历史
- Spring整合Flowable
- 配置文件整合
- 配置类整合
- SpringBoot整合Flowable