Note:所有类型的网关不可以同时拥有多个入口和多个出口
关于Sequence Flow也就是图中的线,当连接的是并行网关的时候是没法加condition的,condition必须要有一个true或false的返回的值,如下面的例子,使用java代码写的condition(红色部分),注意必须要return。
<sequenceFlowid="SequenceFlow_053b7wt"name="java脚本线"sourceRef="ExclusiveGateway_1wgfzzs" targetRef="business"> <conditionExpression xsi:type="tFormalExpression">System.out.println("条件网关"); return true; </conditionExpression> </sequenceFlow> <sequenceFlowid="SequenceFlow_0fjx8rl"name="表达式线"sourceRef="ExclusiveGateway_1wgfzzs" targetRef="Task_014lbgb"> <conditionExpressionxsi:type="tFormalExpression">2>1</conditionExpression> </sequenceFlow>
触发指定agenda-group的规则和ruleflow-group的规则
kieSession.getAgenda().getAgendaGroup("test").setFocus(); ((InternalAgenda)kieSession.getAgenda()).activateRuleFlowGroup("test");
在jbpm中的condition expresss使用MVEL、java和表达式,最主要的是language那里的区别
DRL语言
<conditionExpression xsi:type="tFormalExpression"language="http://www.jboss.org/drools/rule"> com.trusfort.credit.decision.pojo.DecisionFlow(id=="1") </conditionExpression>
当判断条件为map时按照如下写法:
java.util.HashMap( this["a"]>1 )
java语言
<conditionExpressionxsi:type="tFormalExpression" language="http://www.java.com/java"> return ture </conditionExpression>
表达式
<sequenceFlowid="SequenceFlow_0fjx8rl"name="表达式线"sourceRef="ExclusiveGateway_1wgfzzs" targetRef="Task_014lbgb"> <conditionExpressionxsi:type="tFormalExpression">2>1</conditionExpression> </sequenceFlow>
如果网关是parallel gateway(并行网关)时 线上的条件是无效的,Inclusive gateway 和exclusive gateway 线上的条件是有效的