activiti参考5-任务TASK
一、概要
1,设计TASK的表主要是:ACT_RU_TASK,ACT_HI_TASKINST(见参考-activiti表);
2,任务主要有:人工任务(usertask),服务任务(servicetask)等;
3,候选人/候选组(candidate):可以执行任务的一类人或者多个组,候选人/候选组中都可以去签收任务,一旦某人签收,就成为受理人,其他人就不能再签收受理此任务;usertask流程图中,candidate标示候选;候选人涉及的表ACT_RU_IDENTITYLINK;
4,受理人(assignee):有两种情况,一种是候选人/组中有人签收任务后成为受理人,另外一种是流程图中直接指定受理人,但是可以指定一个动态受理人;受理人涉及的表ACT_RU_TASK;
5,持有人(owner):持有人设置主要是存入历史表中,用于历史任务的查询,涉及的表ACT_HI_TASKINST;
二、任务操作
1,创建TASK任务与设置权限:可以使用代码创建任务,但是实际操作中都是绘制流程图。绘制TASK后,在属性可以设置候选人和受理人,一般都是设置候选人,因为固定受理人不太符合程序变动;
候选人设置了deptleader,该值将部署在表ACT_RU_IDENTITYLINK中,查看xml看见:
1
2
3
|
//设置了候选组 < userTask id = "deptLeaderAudit" name = "部门领导审批" activiti:candidateGroups = "deptLeader" > </ userTask > |
完整的XML(无图形位置信息)
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
|
< process id = "leave" name = "请假流程" isExecutable = "true" > < documentation >请假流程演示</ documentation > < startEvent id = "startevent1" name = "Start" activiti:initiator = "applyUserId" ></ startEvent > < userTask id = "deptLeaderAudit" name = "部门领导审批" activiti:candidateGroups = "deptLeader" ></ userTask > < exclusiveGateway id = "exclusivegateway5" name = "Exclusive Gateway" ></ exclusiveGateway > < userTask id = "modifyApply" name = "调整申请" activiti:assignee = "${applyUserId}" > < extensionElements > < activiti:taskListener event = "complete" delegateExpression = "${afterModifyApplyContentProcessor}" ></ activiti:taskListener > </ extensionElements > </ userTask > < userTask id = "hrAudit" name = "人事审批" activiti:candidateGroups = "hr" ></ userTask > < exclusiveGateway id = "exclusivegateway6" name = "Exclusive Gateway" ></ exclusiveGateway > < userTask id = "reportBack" name = "销假" activiti:assignee = "${applyUserId}" > < extensionElements > < activiti:taskListener event = "complete" delegateExpression = "${reportBackEndProcessor}" ></ activiti:taskListener > </ extensionElements > </ userTask > < endEvent id = "endevent1" name = "End" ></ endEvent > < exclusiveGateway id = "exclusivegateway7" name = "Exclusive Gateway" ></ exclusiveGateway > < sequenceFlow id = "flow2" sourceRef = "startevent1" targetRef = "deptLeaderAudit" ></ sequenceFlow > < sequenceFlow id = "flow3" sourceRef = "deptLeaderAudit" targetRef = "exclusivegateway5" ></ sequenceFlow > < sequenceFlow id = "flow4" name = "不同意" sourceRef = "exclusivegateway5" targetRef = "modifyApply" > < conditionExpression xsi:type = "tFormalExpression" > <![CDATA[${!deptLeaderPass}]]> </ conditionExpression > </ sequenceFlow > < sequenceFlow id = "flow5" name = "同意" sourceRef = "exclusivegateway5" targetRef = "hrAudit" > < conditionExpression xsi:type = "tFormalExpression" > <![CDATA[${deptLeaderPass}]]> </ conditionExpression > </ sequenceFlow > < sequenceFlow id = "flow6" sourceRef = "hrAudit" targetRef = "exclusivegateway6" ></ sequenceFlow > < sequenceFlow id = "flow7" name = "同意" sourceRef = "exclusivegateway6" targetRef = "reportBack" > < conditionExpression xsi:type = "tFormalExpression" > <![CDATA[${hrPass}]]> </ conditionExpression > </ sequenceFlow > < sequenceFlow id = "flow8" sourceRef = "reportBack" targetRef = "endevent1" ></ sequenceFlow > < sequenceFlow id = "flow9" name = "不同意" sourceRef = "exclusivegateway6" targetRef = "modifyApply" > < conditionExpression xsi:type = "tFormalExpression" > <![CDATA[${!hrPass}]]> </ conditionExpression > </ sequenceFlow > < sequenceFlow id = "flow10" name = "重新申请" sourceRef = "exclusivegateway7" targetRef = "deptLeaderAudit" > < conditionExpression xsi:type = "tFormalExpression" > <![CDATA[${reApply}]]> </ conditionExpression > </ sequenceFlow > < sequenceFlow id = "flow11" sourceRef = "modifyApply" targetRef = "exclusivegateway7" ></ sequenceFlow > < sequenceFlow id = "flow12" name = "结束流程" sourceRef = "exclusivegateway7" targetRef = "endevent1" > < conditionExpression xsi:type = "tFormalExpression" > <![CDATA[${!reApply}]]> </ conditionExpression > </ sequenceFlow > </ process > |
2,查询候选任务
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
|
//根据候选组ID查询拥有任务 List<Task> tasks = taskService .createTaskQuery() .taskCandidateGroup(groupA.getId()) .list(); for (Task task : tasks) {System.out.println(task.getName());} //根据用户ID查询任务 tasks = taskService .createTaskQuery() .taskCandidateUser(user.getId()) .list(); for (Task task : tasks) {System.out.println(task.getName());} //调用taskCandidateGroupIn List<String> groupIds = new ArrayList<String>(); groupIds.add(groupA.getId()); groupIds.add(groupB.getId()); tasks = taskService .createTaskQuery() .taskCandidateGroupIn(groupIds) .list(); for (Task task : tasks) {System.out.println(task.getName());} //查询权限数据 List<IdentityLink> links = taskService .getIdentityLinksForTask(tasks.get( 0 ) .getId()); System.out.println( "关系数据量: " + links.size());} |
activiti参考5-任务TASK的更多相关文章
- 定时管理器框架-Task.MainForm
入住博客园4年多了,一直都是看别人的博客,学习别人的知识,为各个默默无私贡献自己技术总结的朋友们顶一个:这几天突然觉得是时候加入该队列中,贡献出自己微弱的力量,努力做到每个月有不同学习总结,知识学习的 ...
- activiti数据库表结构全貌解析
http://www.jianshu.com/p/e6971e8a8dad 下面本人介绍一些activiti这款开源流程设计引擎的数据库表结构,首先阐述:我们刚开始接触或者使用一个新的东西(技术)时我 ...
- Activiti工作流学习(一)部署对象和流程定义
一.前言 前一段时间在工作中,使用了流程审批,对api的调用非常不熟悉,都是调用别人写好的接口在界面上进行显示,基本了解了流程审批的主要步骤,现对流程审批进行学习,主要是调用api进行CRUD操作,感 ...
- [activiti] Activiti 5.18 的Mybatis版本依赖问题
测试activiti 是查询Task时抛出一个异常: org.apache.ibatis.exceptions.PersistenceException: ### Error querying dat ...
- Activiti工作流学习-----基于5.19.0版本(3)
前面关于eventType的属性值的配置简单的说了一下,activiti支持的值如下表所示:这是我摘抄的activiti官网的 Event 的名字 描述 Event的类名 ENGINE_CREATED ...
- c# async Task await Result 死锁
最近项目数据量较大,使用 async Task异步增加执行效率 遇到问题,当前有2个计算非常耗时,现在需要你优化一下,这2个计算并行执行,2个计算执行完成后将2个结果sum返回给用户 当前我是这样实现 ...
- 基于easyui开发Web版Activiti流程定制器详解(六)——Draw2d的扩展(三)
题外话: 最近在忙公司的云项目空闲时间不是很多,所以很久没来更新,今天补上一篇! 回顾: 前几篇介绍了一下设计器的界面和Draw2d基础知识,这篇讲解一下本设计器如何扩展Draw2d. 进入主题: 先 ...
- (原创)task和function语法的使用讨论(Verilog,CPLD/FPGA)
1. Abstract function和task语句的功能有很多的相似之处,在需要有多个相同的电路生成时,可以考虑使用它们来实现.因为个人使用它们比较少,所以对它们没有进行更深的了解,现在时间比较充 ...
- Activiti 5.17 实体对象与类和数据库表的映射
一.Activiti 5.17 mybatis的mapping文件声明映射的实体对象关系. <configuration><settings><settingname=& ...
随机推荐
- iOS-CAEmitterLayer(粒子效果)
扩展:https://github.com/lichtschlag/Dazzle ; , , , ); , ); .f; .f; ; .f; .f; ...
- iOS应用间的跳转和传值
在第一个应用程序中info.plist设置 URL Identifier: 该字符串是你自定义的 URL scheme 的名字 注意: URL Schemes 是一个数组,允许应用定义多个 URL s ...
- ios图片拉伸两种方法
UIImage *image = [UIImage imageNamed:@"qq"]; 第一种: // 左端盖宽度 NSInteger leftCapWidth = image. ...
- HDU 4027 Can you answer these queries?(线段树的单点更新+区间查询)
题目链接 题意 : 给你N个数,进行M次操作,0操作是将区间内的每一个数变成自己的平方根(整数),1操作是求区间和. 思路 :单点更新,区间查询,就是要注意在更新的时候要优化,要不然会超时,因为所有的 ...
- INTERESTING AND OBSCURE INHERITANCE ISSUES WITH CPP
1. using 关键字 使用 using 关键字,可以将父类中被隐藏的函数暴露在子类中,但是需要注意的是,在相同情况下,子类函数的优先级更高. 2. 继承构造函数(C++11) 在c++11之前, ...
- js小技巧(一)
事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture(); event.srcE ...
- Android 注入详解
Android下的注入的效果是类似于Windows下的dll注入,关于Windows下面的注入可以参考这篇文章Windows注入术.而Android一般处理器是arm架构,内核是基于linux,因此进 ...
- jenkins配置及使用中出现的问题
安装中遇到的问题: 1.linux中最好用普通用户安装tomcat和jenkins,用普通用户启动tomcat,否则jenkins工作空间不会在普通用户下,而线上自动发布部署时,是不允许用root用户 ...
- switch中的default的位置
[转载]http://hi.baidu.com/dannie007zxl/item/5d0c3185577df719c3162724 有的时候,我们对身旁自认为熟悉的东西,却发现很难去给出准确的回答. ...
- [转]ArcGIS计算图斑的四邻坐标(XMin,XMax,YMin,YMax)
1.背景: 在国土,调查等行业业务里面经常有需要计算某个图斑的四邻坐标,即xmax,xmin,ymin,ymax;也就是常说的MBR(最小外包矩形),本教程演示如何计算一个shapefile文件上的图 ...