flowable 获取自定义属性值

Posted 小学生05101

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flowable 获取自定义属性值相关的知识,希望对你有一定的参考价值。


背景

我们在做flowable开发的时候难免会做一些自定义属性,如何去获取他们的值呢?

我是一个有代码洁癖的人,如果哪里有写的不好的地方,请多多指教。

代码

1: 获取节点对象

public FlowElement getFlowElementByActivityIdAndProcessDefinitionId(String activityId, String processDefinitionId) 
BpmnModel bpmnModel = repositoryService.getBpmnModel(processDefinitionId);
List<Process> processes = bpmnModel.getProcesses();
if (CollectionUtils.isNotEmpty(processes))
for(Process process : processes)
FlowElement flowElement = process.getFlowElement(activityId);
if (flowElement != null)
return flowElement;



return null;

2:获取节点的自定义属性

/**
* 获取自定义属性值
*
* @param activityId 节点id
* @param processDefinitionId 流程定义id
* @param customPropertyName 属性名
* @return
*/
public List<ExtensionElement> getCustomProperty(String activityId, String processDefinitionId, String customPropertyName)
FlowElement flowElement = this.getFlowElementByActivityIdAndProcessDefinitionId(activityId,processDefinitionId);
if (flowElement != null && flowElement instanceof UserTask)
UserTask userTask = (UserTask) flowElement;
Map<String, List<ExtensionElement>> extensionElements = userTask.getExtensionElements();
if (MapUtils.isNotEmpty(extensionElements))
List<ExtensionElement> values = extensionElements.get(customPropertyName);
if (CollectionUtils.isNotEmpty(values))
return values;



return null;



以上是关于flowable 获取自定义属性值的主要内容,如果未能解决你的问题,请参考以下文章

为动态创建的 Android 片段提供自定义属性值

flowable自定义节点属性

Flowable入门系列文章97 - 获取流程定义

Flowable入门系列文章82 - 自定义调色板 02

一段简单的代码记录如何通过 js 给 HTML 设置自定义属性,并且通过点击事件获取到所设置的自定义属性值

VS code自定义用户代码片段snippet