现有springboot项目 部署flowable
时间: 2023-09-23 12:02:28 浏览: 94
springboot-flowable:采用springboot2.0.5+flowable6.4.0搭建工作流微服务项目,对flowable做了使用封装,使用起来更加方便,并对外提供了restful风格的接口
部署 flowable 可以通过以下步骤实现:
1. 添加 Flowable 依赖
在 pom.xml 中添加以下依赖:
```xml
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>${flowable.version}</version>
</dependency>
```
2. 配置数据源
在 application.properties 或 application.yml 中配置数据源,例如:
```yaml
spring.datasource.url=jdbc:mysql://localhost:3306/flowable?useSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2b8
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
```
3. 配置 Flowable
在 application.properties 或 application.yml 中配置 Flowable,例如:
```yaml
flowable:
database-schema-update: true
rest:
enabled: true
```
4. 启动应用程序
使用 Spring Boot 的方式启动应用程序,Flowable 会自动启动并创建数据库表。
5. 访问 Flowable REST API
访问 `http://localhost:8080/flowable-rest/service/` 可以查看 Flowable REST API 的文档。你可以使用该 API 进行流程管理和任务管理等操作。
至此,你已经成功部署了 Flowable。
阅读全文