我是靠谱客的博主 柔弱短靴,最近开发中收集的这篇文章主要介绍Activiti 异常:Expression did not resolve to a string or collection of strings,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
异常信息:
Expression did not resolve to a string or collection of strings
这是在设置候选组变量的时候没有赋值就去完成任务
得在完成任务的时候设置一下才行
// 配置变量关闭
Map<String, Object> variables = new HashMap<>();
Evection evection = new Evection();
evection.setFirstInstanceGroups("111");
evection.setSecondInstanceGroups("222");
variables.put("evection", evection);
Map<String, Object> map = new HashMap<>();
map.put("status", 2);
taskService.complete(task.getId(), map, variables);
最后
以上就是柔弱短靴为你收集整理的Activiti 异常:Expression did not resolve to a string or collection of strings的全部内容,希望文章能够帮你解决Activiti 异常:Expression did not resolve to a string or collection of strings所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复