如何在springboot中整和flowable-ui6.7.2
时间: 2024-06-10 07:06:11 浏览: 188
很高兴为你解答这个问题!在Spring Boot中集成Flowable-UI 6.7.2,你需要按照以下步骤进行操作:
1. 首先,你需要在Spring Boot项目中添加以下依赖关系:
```
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter-rest-api</artifactId>
<version>6.7.2</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-ui-idm-spring-boot-starter</artifactId>
<version>6.7.2</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-ui-admin-spring-boot-starter</artifactId>
<version>6.7.2</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-ui-modeler-spring-boot-starter</artifactId>
<version>6.7.2</version>
</dependency>
```
2. 然后,在Spring Boot项目的配置文件中,添加以下配置:
```
flowable:
rest:
path: /flowable
api:
path: /api
cors-enabled: true
app:
jackson:
date-format: yyyy-MM-dd'T'HH:mm:ssZ
database-schema-update: true
```
3. 部署Flowable-UI 6.7.2
4. 最后,在浏览器中访问http://localhost:8080/flowable-ui即可进入Flowable-UI界面,并可使用Flowable-UI提供的流程设计器、任务查询、用户管理等功能。
阅读全文