我想将流变量与文字字符串进行比较,并忽略变量的大小写。例如
...
<when expression="#[StringUtils.upperCase(flowVars['officeCode']) == 'REGION1']">
....
产生的错误是 [Error: could not access: StringUtils; 在课堂上:null] [Near : {... Unknown ....}]
我也试过
<when expression="#[regex('[a-zA-Z0-9]+',flowVars['officeCode'],Pattern.CASE_INSENSITIVE) == 'REGION1']">
对于正则表达式比较,我收到错误“文本不是字符串”
非常感谢任何帮助。