flowable-spring-boot-starter 与flowable-spring-boot-starter-process区别

版权声明:本文为博主原创文章,未经博主允许不得转载。不经过允许copy,讲追究法律责任,欢迎加入我们的学习提升群523988350,可以相互交流 https://blog.csdn.net/qq_30739519/article/details/90142658

摘要:flowable-spring-boot-starter 与flowable-spring-boot-starter-process区别

Flowable在6.3之前的版本,使用的是flowable-spring-boot-starter 完整maven地址如下:

<!-- https://mvnrepository.com/artifact/org.flowable/flowable-spring-boot-starter-basic -->
<dependency>
    <groupId>org.flowable</groupId>
    <artifactId>flowable-spring-boot-starter-basic</artifactId>
    <version>...</version>
</dependency>

Flowable在6.3版本中对项目进行了一次重构,该版本是个分水岭,变化相当大。flowable-spring-boot-starter模块被移到了flowable-spring-boot-starter-process模块。建议直接使用flowable-spring-boot-starter-process模块,不要再使用flowable-spring-boot-starter模块。flowable-spring-boot-starter-process模块完整maven地址如下:

<!-- https://mvnrepository.com/artifact/org.flowable/flowable-spring-boot-starter-process -->
<dependency>
    <groupId>org.flowable</groupId>
    <artifactId>flowable-spring-boot-starter-process</artifactId>
    <version>...</version>
</dependency>

如何贡献代码

一起成为开源代码贡献人员,欢迎大家加入qq交流群为社区贡献添砖加瓦:1023773998
点击链接加入群聊【Flowable官方中国社区群】:https://jq.qq.com/?_wv=1027&k=5tRwTr4

猜你喜欢

转载自blog.csdn.net/qq_30739519/article/details/90142658