标签:plain 进制 find 遍历 tst 调用 osi rate 资源文件
2016-03-27| 发布: | 浏览: 2363 |保存PDF
部署流程定义加载资源文件有两种方式
示例:
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
|
@Test public void testDeploy() { /** * RepositoryService是Activiti的仓库服务类,流程定义和部署对象相关的Service * 所谓的仓库指流程定义文档的两个文件:bpmn文件和流程图片 */ RepositoryService repositoryService = processEngine.getRepositoryService(); // 创建一个部署对象DeploymentBuilder,用来定义流程部署的相关参数 DeploymentBuilder deploymentBuilder = repositoryService.createDeployment(); // 添加部署的名称 deploymentBuilder.name( "流程定义" ); // 第一种方式:添加hello.bpmn和hello.png // deploymentBuilder.addClasspathResource("diagrams/hello.bpmn"); // deploymentBuilder.addClasspathResource("diagrams/hello.png"); // // 第二种方式:通用zip文件 InputStream in = this .getClass().getClassLoader().getResourceAsStream( "diagrams/hello.zip" ); ZipInputStream zipInputStream = new ZipInputStream(in); deploymentBuilder.addZipInputStream(zipInputStream); // 部署流程定义 Deployment deployment = deploymentBuilder.deploy(); System.out.println( "部署ID:" + deployment.getId()); // 1 System.out.println( "部署名称:" + deployment.getName()); // 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
|
/** 查询流程定义 */ @Test public void processDefinitionQueryTest() { RepositoryService service = processEngine.getRepositoryService(); /** * 创建一个流程定义的查询 * .list();返回一个集合 .singleResult();//返回惟一结果集 * .count();//返回结果集数量 * .listPage(firstResult, maxResults);//分页查询 */ ProcessDefinitionQuery pdq = service.createProcessDefinitionQuery(); // pdq.deploymentId(deploymentId)//使用部署对象ID查询 // pdq.processDefinitionId(processDefinitionId)//使用流程定义ID查询 // pdq.processDefinitionKey(processDefinitionKey)//使用流程定义的key查询 // pdq.processDefinitionNameLike(processDefinitionNameLike)//使用流程定义的名称模糊查询 pdq.orderByProcessDefinitionVersion().asc(); // 按照版本的升序排列 // pdq.orderByProcessDefinitionName().desc()//按照流程定义的名称降序排列 List<ProcessDefinition> list = pdq.list(); if (list != null && list.size() > 0 ) { for (ProcessDefinition pd : list) { // 流程定义的key+版本+随机生成数 System.out.println( "流程定义ID:" + pd.getId()); // 对应hello.bpmn文件中的name属性值 System.out.println( "流程定义的名称:" + pd.getName()); // 对应hello.bpmn文件中的id属性值 System.out.println( "流程定义的key:" + pd.getKey()); // 当流程定义的key值相同的相同下,版本升级,默认1 System.out.println( "流程定义的版本:" + pd.getVersion()); System.out.println( "资源名称bpmn文件:" + pd.getResourceName()); System.out.println( "资源名称png文件:" + pd.getDiagramResourceName()); System.out.println( "部署对象ID:" + pd.getDeploymentId()); System.out.println( "############################" ); } } } |
示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/** 删除流程定义 */ @Test public void deleteProcessDefinition() { // 使用部署ID,完成删除 String deploymentId = "15001" ; //不带级联的删除 只能删除没有启动的流程,如果流程启动,就会抛出异常 // processEngine.getRepositoryService().deleteDeployment(deploymentId); /** * 级联删除 不管流程是否启动,都能可以删除 */ processEngine.getRepositoryService().deleteDeployment(deploymentId, true ); System.out.println( "删除成功!" ); } |
示例:
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
|
/** 查看流程图 */ @Test public void viewPic() throws IOException { RepositoryService service = processEngine.getRepositoryService(); /** 将生成图片放到文件夹下 */ String deploymentId = "1" ; // 获取图片资源名称 List<String> list = service.getDeploymentResourceNames(deploymentId); // 定义图片资源的名称 String resourceName = "" ; if (list != null && list.size() > 0 ) { for (String name : list) { if (name.indexOf( ".png" ) >= 0 ) { resourceName = name; } } } // 获取图片的输入流 InputStream in = service.getResourceAsStream(deploymentId, resourceName); // 将图片生成到D盘的目录下 File file = new File( "D:/" + resourceName); // 将输入流的图片写到D盘下 FileUtils.copyInputStreamToFile(in, file); } |
2、创建LinkedHashMap<String, ProcessDefinition>,对相同key的进行覆盖
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
|
/***查询最新版本的流程定义*/ @Test public void findLastVersionProcessDefinition() { List<ProcessDefinition> list = processEngine.getRepositoryService() .createProcessDefinitionQuery() // .orderByProcessDefinitionVersion().asc() // 使用流程定义的版本升序排列 .list(); /** * Map<String,ProcessDefinition> * map集合的key:流程定义的key * map集合的value:流程定义的对象 * map集合的特点:当map集合key值相同的情况下,后一次的值将替换前一次的值 */ Map<String, ProcessDefinition> map = new LinkedHashMap<String, ProcessDefinition>(); if (list != null && list.size() > 0 ) { for (ProcessDefinition pd : list) { map.put(pd.getKey(), pd); } } List<ProcessDefinition> pdList = new ArrayList<ProcessDefinition>(map.values()); if (pdList != null && pdList.size() > 0 ) { for (ProcessDefinition pd : pdList) { System.out.println( "流程定义ID:" + pd.getId()); System.out.println( "流程定义的名称:" + pd.getName()); System.out.println( "流程定义的key:" + pd.getKey()); System.out.println( "流程定义的版本:" + pd.getVersion()); System.out.println( "资源名称bpmn文件:" + pd.getResourceName()); System.out.println( "资源名称png文件:" + pd.getDiagramResourceName()); System.out.println( "部署对象ID:" + pd.getDeploymentId()); System.out.println( "#########################################" ); } } } |
思路:把所有相同key的流程定义查出来,然后遍历删除
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**删除流程定义(删除key相同的所有不同版本的流程定义)*/ @Test public void deleteProcessDefinitionByKey() { // 流程定义的key String processDefinitionKey = "hello" ; // 先使用流程定义的key查询流程定义,查询出所有的版本 List<ProcessDefinition> list = processEngine.getRepositoryService() // .createProcessDefinitionQuery() // .processDefinitionKey(processDefinitionKey) // 使用流程定义的key查询 .list(); // 遍历,获取每个流程定义的部署ID if (list != null && list.size() > 0 ) { for (ProcessDefinition pd : list) { // 获取部署ID String deploymentId = pd.getDeploymentId(); processEngine.getRepositoryService() // .deleteDeployment(deploymentId, true ); } } } |
标签:plain 进制 find 遍历 tst 调用 osi rate 资源文件
原文地址:https://www.cnblogs.com/zhanghengscnc/p/8835451.html