EasyRules动态规则实现
EasyRules动态规则实现
之前写了easyRules的基本使⽤⽅法,可以说还是⾮常⽅便⽽且操作也不复杂,个⼈觉得相较于Drools来说是简便了不少。接下来就需要更深⼊的了解⼀下规则的动态使⽤⽅法。
动态规则
一件难忘的事500字动态规则就是由于业务场景的变化,之前的规则已经不适⽤现在的业务场景,需要更改相对应的规则,但是⼜不想每次都去修改代码,例如:某宝做活动,之前是满100块才能减免,但是现在只⽤满10块就能减免了,按照以前的逻辑,我们需要去⼀下规则⽂件⾥⾯的⽐较参数就可以,但是这样就需要重新编译打包才能⽣效,如果使⽤动态规则,就是我传⼀个规则⽂件,只需要运⽤这个规则⽂件,就能达到效果,也不需要重新编译打包,何乐⽽不为呢
要实现这个效果,可以利⽤easyRules规则定义的两种⽅式来实现,ymal⽂件定义规则和json⽂件定义规则。
存在的问题
这⾥先说⼀下在使⽤过程中遇到的问题(这⼏个问题都是在运⾏代码时发现的,可以结合下⾯的代码实现来看):
1. 使⽤规则⽂件定义规则,condition和action中只能操作facts中有的对象
在规则⽂件中虽然可以在conditon和action中使⽤java代码来写逻辑,但是⽆法向规则类(pojo类定义的规则)那样的输⼊参数,因为规则⽂件中是没办法设置传⼊参数,例如,在规则类中的action注解对应的⽅法中我们存⼊了facts参数,可以使⽤()⽅法获取内容,但是在规则⽂件中就没办法使⽤facts这个参数,因为规则⽂件中⽆法传⼊facts这个参数;
2. 通过规则监听处理⾃定义规则的逻辑处理
基于上⼀个问题,我想到了使⽤规则监听来进⾏处理,可以在规则监听类中的afterEvaluate⽅法中进⾏相关的逻辑编
写,evaluationResult参数时布尔类型的,表⽰规则匹配是否通过,通过值为true,未通过值未fal,也可以使⽤facts和rule,还是很不错的;
3. 使⽤监听则会作⽤到所有执⾏的规则,如何准确处理
基于第⼆个问题,发现使⽤了规则监听后,如果你设置的了多个规则进⾏匹配,那么每次规则执⾏都会⾛到afterEvaluate⽅法中,所以这⾥的代码逻辑就可能被重复执⾏多次,这⾥我处理⽅法是通过规则的名称来匹配,只有是指定名称的规则才会⾛逻辑处理。
代码实现
场景简述
接下来使⽤的测试场景是,输⼊⼀个⼈的信息,信息中包含了这个⼈的学历等级,根据学历等级去查询他的学历证书情况(集合存储),查询完学历证书后,在检测学历证书与他的学历等级是否匹配,匹配规则为,学历证书数量与学历等级相同,并且最⼤学历证书的学历等级与⼈的学历等级⼀致,则匹配通过,最终⼈的信息中会添加学历匹配结果,匹配通过的为学历真实,未匹配通过的为存在学历造假嫌疑,并且会保存⼈的学历资质集合信息。
图解
java规则类实现
规则类
CheckIt:通过检测学历真实
import entity.pojo.Person;
import org.jeasy.rules.annotation.Action;
import org.jeasy.rules.annotation.Condition;
草莓的苗import org.jeasy.rules.annotation.Fact;
import org.jeasy.rules.annotation.Rule;
import org.jeasy.rules.api.Facts;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors;
/**
* @author 莫须有
* @Date 2021/12/31 15:45
* @Description 检测学历真实性
纸巾纸*/
@Rule(name ="check", description ="检测学历真实性")
public class CheckIt {
@Condition
public boolean check(@Fact("person")Person person, Facts facts){
List<Education> educationList = EducationList();
List<Education> collect = educationList.stream().paring(Education::getGrade).reverd()).List()); person.tEducationList(collect);
facts.put("person", person);
Qualifications()== educationList.size()&& (0).getGrade()== Qualifications();
周边旅游景点大全}
@Action
public void t(Facts facts){
Person person = ("person");
助学贷款网站
person.tDec("学历真实!");
facts.put("person", person);
}
}
EducationAdd:添加学历资质集合
import org.jeasy.rules.annotation.Action;
import org.jeasy.rules.annotation.Condition;
import org.jeasy.rules.annotation.Fact;
import org.jeasy.rules.annotation.Rule;
import org.jeasy.rules.api.Facts;
import utils.AddEducation;
import java.util.List;
/
**
乐羊羊
* @author 莫须有
* @Date 2021/12/31 15:22
* @Description 根据学历添加学历集合
*/
@Rule(name ="EducationAdd", description ="添加学历规则匹配")
public class EducationAdd {
@Condition
public boolean educationAdd(@Fact("person") Person person){
Qualifications()>=0&& Qualifications()<=10; }
@Action
public void add(Facts facts){
Person person = ("person");
List list = Qualification(person);
person.tEducationList(list);
facts.put("person", person);
}
}
QualificationNotMach:不符合要求的学历,即造假学历
import entity.pojo.Person;
import org.jeasy.rules.annotation.Action;
import org.jeasy.rules.annotation.Condition;
import org.jeasy.rules.annotation.Fact;
import org.jeasy.rules.annotation.Rule;
import org.jeasy.rules.api.Facts;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors;
/**
* @author 莫须有
* @Date 2021/12/31 17:51
* @Description 学历造假规则匹配
*/
@Rule(name ="QualificationNotMach", description ="学历检测未通过匹配规则")
public class QualificationNotMach {雷锋塔
@Condition
public boolean qualificationNotMach(@Fact("person")Person person, Facts facts){
List<Education> educationList = EducationList();
List<Education> collect = educationList.stream().paring(Education::getGrade).reverd()).List()); person.tEducationList(collect);
facts.put("person", person);
return!(Qualifications()== educationList.size()&& (0).getGrade()== Qualifications());
}
@Action
public void add(Facts facts){
Person person = ("person");
person.tDec("存在学历造假的嫌疑!");
facts.put("person", person);
}
}
AddEducation :添加学历资质集合⼯具类
package utils;
import entity.pojo.Education;
import entity.pojo.Person;
import java.util.ArrayList;
import java.util.List;
/**
* @author 莫须有
* @Date 2021/12/31 14:32
* @Description 添加学历集合巨蟹座男生的性格脾气
*/
public class AddEducation {
public static List getQualification(Person person){ List qList =new ArrayList();
Qualifications()){
ca0:
qList.add(getGrade0());
break;
ca1:
qList.add(getGrade1());
break;
ca2:
qList.add(getGrade1());
qList.add(getGrade3());
break;
ca3:
····
default:
break;
}
return qList;
}
private static Education getGrade0(){
Education Education =new Education();
Education.tGrade(0);
Education.tQualificationsName("⽂盲");
Education.tSchoolName("⽆教育经历");
return Education;
}
····
}
测试类: