springboot引入flowable-ui-modeler依赖的步骤
时间: 2024-01-01 10:06:53 浏览: 175
springboot + flowable + modeler + idm
引入Flowable UI Modeler依赖的步骤如下:
1. 在pom.xml文件中添加以下依赖:
```xml
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-ui-modeler-app</artifactId>
<version>6.6.0</version>
</dependency>
```
2. 在application.properties文件中添加以下配置:
```properties
spring.profiles.active=flowable-ui,modeler
```
3. 在浏览器中访问http://localhost:8080/flowable-modeler即可打开Flowable UI Modeler。
注意:此步骤需要保证已经启动了Flowable的引擎和REST API。
阅读全文