spring boot 2.0.5 版本使用哪个版本的flowable
时间: 2023-09-25 07:09:08 浏览: 220
spring boot 文档
对于 Spring Boot 2.0.5 版本,建议使用 Flowable 6.3.x 版本。Flowable 6.3.x 版本是与 Spring Boot 2.0.x 兼容的稳定版本。
您可以在项目的 Maven 或 Gradle 构建配置文件中添加以下依赖项来使用 Flowable 6.3.x 版本:
Maven:
```xml
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>6.3.1</version>
</dependency>
```
Gradle:
```groovy
implementation 'org.flowable:flowable-spring-boot-starter:6.3.1'
```
请注意,上述版本号(6.3.1)仅供参考,您可以根据自己的需求选择更适合的版本。
另外,请确保您在项目中只使用与 Flowable 版本兼容的其他库和组件,以避免可能的冲突和兼容性问题。
阅读全文