如何在springboot中使用flowable
时间: 2024-05-12 10:17:28 浏览: 163
springboot-flowable-cims基于工作流引擎flowable、spring boot开发的工作流服务平台
5星 · 资源好评率100%
可以使用Flowable提供的Spring Boot Starter来轻松集成Flowable和Spring Boot。只需在pom.xml文件中添加以下依赖即可:
```
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>${flowable.version}</version>
</dependency>
```
然后在应用程序配置文件中配置Flowable,并通过注释启用需要的服务。有关更多详细信息,请参见Flowable官方文档。
阅读全文