Spring Boot 2.1.1 简单集成flowable 6.4.2实例

一、什么是Flowable?

        Flowable是用Java编写的轻量级业务流程引擎。Flowable流程引擎允许您部署BPMN 2.0流程定义(用于定义流程的行业XML标准),创建这些流程定义的流程实例,运行查询,访问活动或历史流程实例以及相关数据,以及更多其他功能。

       当将Flowable添加到您的应用程序/服务/体系结构中时,它非常灵活。您可以通过包含Flowable库引擎嵌入到应用程序或服务中,该库可以作为JAR使用。由于它是一个JAR,因此您可以轻松地将其添加到任何Java环境中:Java SE;Servlet容器,例如Tomcat或Jetty,Spring;Java EE服务器,例如JBoss或WebSphere,等等。或者,您可以使用Flowable REST API通过HTTP进行通信。还有一些Flowable应用程序(Flowable Modeler,Flowable Admin,Flowable IDM和Flowable Task),它们提供了用于处理流程和任务的现成示例UI。

二、Flowable和Activiti关系

        Flowable是Activiti原班主创人员从Activiti分离出来的一套工作流引擎,是一个业务流程管理(BPM)和工作流系统,适用于开发人员和系统管理员。其核心是超快速、稳定的BPMN2流程引擎,易于与 Spring集成使用。

Activiti7是 Salaboy团队开发的。进行维护activiti6以及activiti5代码。目前的activiti5以及activiti6代码还是原Tijs Rademakers原有团队开发的。Salaboy团队目前在开发activiti7框架。对于activiti6以及activiti5的代码官方已经宣称暂停维护了。activiti7就是噱头 内核使用的还是activiti6。并没有为引擎注入更多的新特性,只是在activiti之外的上层封装了一些应用。

    flowable是基于activiti-6.0.0.Beta4 分支开发的。目前Flowable已经修复了activiti6很多的bug,可以实现零成本从activiti迁移到flowable。

对比两个的功能:

flowable目前已经支持加签、动态增加实例中的节点、支持cmmn、dmn规范。这些都是activiti6目前版本没有的。

1、flowable已经支持所有的历史数据使用mongdb存储,activiti没有。

2、flowable支持事务子流程,activiti没有。

3、flowable支持多实例加签、减签,activiti没有。

4、flowable支持httpTask等新的类型节点,activiti没有。

5、flowable支持在流程中动态添加任务节点,activiti没有。

6、flowable支持历史任务数据通过消息中间件发送,activiti没有。

7、flowable支持java11,activiti没有。

8、flowable支持动态脚本,,activiti没有。

9、flowable支持条件表达式中自定义juel函数,activiti没有。

10、flowable支持cmmn规范,activiti没有。

11、flowable修复了dmn规范设计器,activit用的dmn设计器还是旧的框架,bug太多。

12、flowable屏蔽了pvm,activiti6也屏蔽了pvm(因为6版本官方提供了加签功能,发现pvm设计的过于臃肿,索性直接移除,这样加签实现起来更简洁、事实确实如此,如果需要获取节点、连线等信息可以使用bpmnmodel替代)。

13、flowable与activiti提供了新的事务监听器。activiti5版本只有事件监听器、任务监听器、执行监听器。

14、flowable对activiti的代码大量的进行了重构。

15、activiti以及flowable支持的数据库有h2、hsql、mysql、oracle、postgres、mssql、db2。其他数据库不支持的。使用国产数据库的可能有点失望了,需要修改源码了。

16、flowable支持jms、rabbitmq、mongodb方式处理历史数据,activiti没有。

目前Flowable已经修复了activiti6很多的bug,可以实现零成本从activiti迁移到flowable,Flowable对Spring Boot开发也进行了支持,而且开发来说Flowable比Activiti更易上手。

Activiti的GitHub地址:https://github.com/Activiti/Activiti

Flowable的GitHub地址:https://github.com/flowable/flowable-engine

三、Flowable与springBoot项目整合

使用版本

 springBoot版本:2.2.1.RELEASE

 flowable版本:6.4.2

1.创建SringBoot项目添加POM依赖



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.2.1.RELEASE
         
    
    cn.linfenw
    flowable_demo
    0.0.1-SNAPSHOT
    flowable_demo
    flowable Demo project for Spring Boot

    
        1.8
        6.4.2
    

    
        
            org.springframework.boot
            spring-boot-starter
        
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
            
                
                    org.junit.vintage
                    junit-vintage-engine
                
            
        

        
        
            org.flowable
            flowable-spring-boot-starter
            ${flowable.version}
        

        
        
            mysql
            mysql-connector-java
            5.1.45
        

    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


2.application.properties文件配置MySQL数据文件

#数据库配置
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/flowable-spring-boot?characterEncoding=UTF-8
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

3.手动创建数据库

使用SQL命令或使用Nacivat数据库工具创建数据库,数据库名为:flowable-spring-boot

创建命令如下

CREATE DATABASE  `flowable-spring-boot` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

4.在resources文件下创建processes文件夹

processes文件夹下创建one-task-process.bpmn20.xml文件

Spring Boot 2.1.1 简单集成flowable 6.4.2实例_第1张图片

one-task-process.bpmn20.xml文件内容如下




    
        
        
        
        
        
    


5.在项目中创建MyService.java

import org.flowable.engine.RuntimeService;
import org.flowable.engine.TaskService;
import org.flowable.task.api.Task;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import java.util.List;

@Service
public class MyService {

    @Autowired
    private RuntimeService runtimeService;

    @Autowired
    private TaskService taskService;

    @Transactional
    public void startProcess() {
        runtimeService.startProcessInstanceByKey("oneTaskProcess");
    }

    @Transactional
    public List getTasks(String assignee) {
        return taskService.createTaskQuery().taskAssignee(assignee).list();
    }

}

6.在项目中创建TaskRepresention.java实体类

public class TaskRepresentation {

        private String id;
        private String name;

        public TaskRepresentation(String id, String name) {
            this.id = id;
            this.name = name;
        }

        public String getId() {
            return id;
        }
        public void setId(String id) {
            this.id = id;
        }
        public String getName() {
            return name;
        }
        public void setName(String name) {
            this.name = name;
        }

    }

7.在项目中创建MyRestController.java文件


import org.flowable.task.api.Task;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import java.util.ArrayList;
import java.util.List;

@RestController
public class MyRestController {

    @Autowired
    private MyService myService;

    /**
     * 请求实例和返回结果
     * curl http://localhost:8080/tasks?assignee=kermit
     * []
     *
     * curl -X POST  http://localhost:8080/process
     * curl http://localhost:8080/tasks?assignee=kermit
     * [{"id":"10004","name":"my task"}]
     */


    /**
     * 启动process
     */
    @RequestMapping(value="/process", method= RequestMethod.POST)
    public void startProcessInstance() {
        myService.startProcess();
    }

    /**
     * 查询需要执行的任务tasks
     * @param assignee 
     * @return
     */
    @RequestMapping(value="/tasks", method= RequestMethod.GET, produces= MediaType.APPLICATION_JSON_VALUE)
    public List getTasks(@RequestParam String assignee) {
        List tasks = myService.getTasks(assignee);
        List dtos = new ArrayList();
        for (Task task : tasks) {
            dtos.add(new TaskRepresentation(task.getId(), task.getName()));
        }
        return dtos;
    }

    

}

8.修改Application启动文件



import cn.linfenw.flowable_demo.jpa.JPAService;
import org.flowable.engine.RepositoryService;
import org.flowable.engine.RuntimeService;
import org.flowable.engine.TaskService;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class FlowableDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(FlowableDemoApplication.class, args);
    }
    @Bean
    public CommandLineRunner init(final RepositoryService repositoryService,
                                  final RuntimeService runtimeService,
                                  final TaskService taskService) {

        return new CommandLineRunner() {
            @Override
            public void run(String... strings) throws Exception {
                System.out.println("Number of process definitions : "
                        + repositoryService.createProcessDefinitionQuery().count());
                System.out.println("Number of tasks : " + taskService.createTaskQuery().count());
                runtimeService.startProcessInstanceByKey("oneTaskProcess");
                System.out.println("Number of tasks after process start: "
                        + taskService.createTaskQuery().count());
            }
        };
    }
}

9.启动项目

控制台打印了数据Spring Boot 2.1.1 简单集成flowable 6.4.2实例_第2张图片

 

可以看到数据库中添加了28张表,说明配置成功

Spring Boot 2.1.1 简单集成flowable 6.4.2实例_第3张图片

按照官方文件写的有点简单,下次再添加内容吧。

刚发现一个不错的Flowable的中文翻译文档https://tkjohn.github.io/flowable-userguide/

参考:

1.activiti与flowable的区别 https://blog.csdn.net/qq_30739519/article/details/82493456

2.Activiti的GitHub地址 https://github.com/Activiti/Activiti

3.Flowable的GitHub地址 https://github.com/flowable/flowable-engine

4.Flowable官方文档 https://www.flowable.org/docs/userguide/index.html#license

你可能感兴趣的:(spring,boot,flowable)