Activiti---流程部署

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package com.an.processdeploy;
 
import org.activiti.engine.ProcessEngine;
import org.activiti.engine.ProcessEngines;
import org.activiti.engine.RepositoryService;
import org.activiti.engine.repository.DeploymentQuery;
import org.activiti.engine.repository.ProcessDefinition;
import org.activiti.engine.repository.ProcessDefinitionQuery;
import org.junit.jupiter.api.Test;
import java.io.InputStream;
import java.util.zip.ZipInputStream;
 
public class ProcessDeploy {
 
 
    ProcessEngine processEngine= ProcessEngines.getDefaultProcessEngine();
 
    @Test
    public void deployOne(){
 
        RepositoryService repositoryService = processEngine.getRepositoryService();
        repositoryService.createDeployment().name("请假流程")
                .addClasspathResource("helloworld.bpmn")
                .addClasspathResource("helloworld.png")
                .deploy();
        System.out.println("流程部署成功!");
 
    }
 
 
    @Test
    public void deployTwo(){
 
        // helloworld.zip不加/  从当前包中找文件
        // helloworld.zip加/     从classpath中找文件
        InputStream inputStream = this.getClass().getResourceAsStream("/helloworld.zip");
        RepositoryService repositoryService = processEngine.getRepositoryService();
        repositoryService.createDeployment().name("请假流程")
                .addZipInputStream(new ZipInputStream(inputStream))
        .deploy();
        System.out.println("流程部署成功!");
 
    }
 
 
    /**
     * 查询流程定义
     */
    @Test
    public void queryProcessDefinition(){
 
        RepositoryService repositoryService = processEngine.getRepositoryService();
        repositoryService.createProcessDefinitionQuery()
        //条件
        .deploymentId("")
        .processDefinitionName("")
        //list
//        .list()
        //count()
//        .count()
        //排序
        .orderByDeploymentId().desc();
 
    }
 
 
    /**
     * 删除流程定义
     */
    @Test
    public void deleteProcessDefinition(){
 
        RepositoryService repositoryService = processEngine.getRepositoryService();
        repositoryService.deleteDeployment("");
 
    }
 
 
    /**
     * 需改流程定义
     *      修改流程图,重新部署;
     *      只要key不变,version会+1
     */
    public void updateProcessDefinition(){
 
    }
 
 
    /**
     * 查询流程图
     */
    @Test
    public void queryProcessPic(){
 
        RepositoryService repositoryService = processEngine.getRepositoryService();
 
        //1、
        String processDefinitionId="";
        InputStream inputStream = repositoryService.getProcessDiagram(processDefinitionId);
 
        //
        String processDeploymentId="";
        ProcessDefinition processDefinition = repositoryService.createProcessDefinitionQuery().deploymentId(processDeploymentId).singleResult();
        InputStream inputStream1 = repositoryService.getProcessDiagram(processDefinition.getId());
 
    }
 
 
    /**
     * 查询最新版本流程定义
     */
    @Test
    public void queryLatestProcessDefinition(){
 
        RepositoryService repositoryService = processEngine.getRepositoryService();
        repositoryService.createProcessDefinitionQuery()
                .orderByProcessDefinitionVersion().asc().list();
 
    }
 
 
    /**
     * 删除相同流程定义key
     */
    @Test
    public void deleteSameKeyProcessDefinition(){
 
        String processDefinitionKey="";
        RepositoryService repositoryService = processEngine.getRepositoryService();
        repositoryService.createProcessDefinitionQuery()
                .processDefinitionKey(processDefinitionKey).list();
 
    }
 
    /**
     * 查询流程部署信息
     */
    @Test
    public void queryProcessDeploy(){
 
        RepositoryService repositoryService = processEngine.getRepositoryService();
        repositoryService.createDeploymentQuery()
         //条件
        .deploymentId("")
        .deploymentName("")
        .deploymentNameLike("")
        //排序 asc()或desc() 必须和 orderBy...一起用
        .orderByDeploymentId().asc()
        .orderByDeploymentName().desc()
        //list
//        .list()
        //listPage
//        .listPage(1,3)
        //count
//        .count()
        //singleResult
        .singleResult();
 
    }
 
}

  

posted on   anpeiyong  阅读(297)  评论(0编辑  收藏  举报

编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示