flowable6.7.2文档
时间: 2023-10-31 22:23:11 浏览: 362
flowable官方文档中文版.zip
你可以在Flowable的官方网站上找到有关Flowable 6.7.2的文档。官方网站链接为https://www.flowable.com/open-source。在该网站上,你可以找到Flowable的详细介绍,包括其功能和用途。此外,还可以在GitHub上找到Flowable的源码,链接为https://github.com/flowable。另外,还有一份中文手册可供参考,链接为https://tkjohn.github.io/flowable-userguide/#_introduction,其中包含了更详细的说明文档。
Flowable是一个使用Java编写的轻量级业务流程引擎,可用于部署BPMN 2.0流程定义,创建流程实例,并进行查询和访问运行中或历史的流程实例及相关数据。
如果你想在项目中使用Flowable 6.7.2,你可以在项目的依赖中添加以下内容:
```
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-engine</artifactId>
<version>6.7.2</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring</artifactId>
<version>6.7.2</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-ui-modeler-rest</artifactId>
<version>6.7.2</version>
</dependency>
```
另外,如果你使用的是Spring Boot,还可以添加以下依赖:
```
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter-process</artifactId>
<version>6.7.2</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-ui-modeler-rest</artifactId>
<version>6.7.2</version>
</dependency>
```<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>
阅读全文