⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_fieldbindingsandpredicatesharing.drl

📁 jboss规则引擎
💻 DRL
字号:
package org.drools;

global java.util.List list;

#this is to test eval condition node sharing working properly
rule rule1
    when
        TestParam(val: value1 -> (val == null))
    then
    	list.add("rule1 fired");
end    


rule rule2
    when
        TestParam(val: value2 -> (val == null))
    then
		list.add("rule2 fired");
end  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -