LD is tigger forever,CG are not brothers forever, throw the pot and shine forever.
Modesty is not false, solid is not naive, treacherous but not deceitful, stay with good people, and stay away from poor people.
talk is cheap, show others the code and KPI, Keep progress,make a better result.
Survive during the day and develop at night。
目录
概 述
个人任务分配:
我们在开发的时候,有一种情况是这样的,
我们有一个任务,可以让多个用户中的任何一个人办理即可,比如某个审批任务,
张三,李四,王五他们中的任何一人办理下都行,这时候,我们用到多用户任务分配。
式一:直接流程图配置中写死
方式二:使用流程变量
@Test
public void start(){
Map<String,Object> variables=new HashMap<String,Object>();
variables.put("userIds", "张三,李四,王五");
ProcessInstance pi=processEngine.getRuntimeService() // 运行时Service
.startProcessInstanceByKey("multiUserProcess2",variables); // 流程定义表的KEY字段值
System.out.println("流程实例ID:"+pi.getId());
System.out.println("流程定义ID:"+pi.getProcessDefinitionId());
}
1.3 分配方式三 TaskListener监听实现
定义一个监听类 MyTaskListener 实现 TaskListener接口
复制代码
public class MyTaskListener implements TaskListener{
/**
*
*/
private static final long serialVersionUID = 1L;
public void notify(DelegateTask delegateTask) {
// TODO Auto-generated method stub
delegateTask.addCandidateUser("张三");
delegateTask.addCandidateUser("李四");
delegateTask.addCandidateUser("王五");
}
}
小结
参考资料和推荐阅读
1.链接: 参考资料.