flowable RepositoryService类

RepositoryService class

Warehouse service warehouse refers to the two files of the process definition document: bpmn file and process picture

Process image generation support method Generated when designing the process, through the API to generate according to the process file

DeploymentBuilder: used to define relevant parameters for process deployment

ProcessDefinitionQuery: used to construct query process definition related parameters

NativeProcessDefinitionQuery: Used to construct local Sql query process definition related parameters

DeploymentQuery: used to construct query deployment object related parameters

@Test
public void DeploymentBuild() {
    DeploymentBuilder deploymentBuilder = repositoryService.createDeployment()
            .category("测试分类")
            .name("名称");
    System.out.println(deploymentBuilder);
}

 

Guess you like

Origin blog.csdn.net/qq_37790902/article/details/108659381