flowable maven
时间: 2023-10-19 21:09:32 浏览: 175
flowable.md
Flowable是一个开源的工作流引擎,可以帮助开发者快速构建和部署工作流应用程序。如果你想在Maven项目中使用Flowable,需要在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>6.6.0</version>
</dependency>
```
同时,你还需要在application.properties文件中配置Flowable的相关属性,例如:
```
spring.datasource.url=jdbc:mysql://localhost:3306/flowable?useUnicode=true&characterEncoding=utf-8&useSSL=false
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
# Flowable properties
spring.flowable.database-schema-update=true
spring.flowable.async-executor-activate=true
```
阅读全文