Drools入门-实现评分专家系统

1.什么是Drools

Drools是一个规则引擎,可以通过自定义规则实现不同的专家语境,而不需要修改源代码,规则引擎会自动加载对应的规则去适应不同的场合。

2. 安装配置Drools环境

Drools官方下载地址

进入网址下载这两个压缩包


下载

解压放置在一个文件夹中


解压完毕

打开Eclipse->Help->install new software->Add->Local->droolsjbpm-tools-distribution-xxx->/binaries/org.drools.updatesite
随便起一个名字就可以开始安装了
安装

你不要以为点了next就安装好了!!!!!!!!
注意看你的eclipse进度条,他还在安装!不要关!!!
等他安装完会弹出提示的!!
那时候再重启eclipse!!!
(血泪史-0-)

安装成功过后打开window->perferences看到Drools就说明配置成功了。


image.png

安装好了之后,点击windows->perferences
屏幕快照 2018-10-08 18.33.34.png

点击add,然后browse路径为刚刚安装的路径下的binaries
binaries

然后就加载完成

3.创建一个Drools项目

New->project->Drools project

选第二个

这里选择第二个,因为第二个有例子!有例子!有例子!

Drools基本规则可以参考Drools语法规则
挺全的,但是我用不到那么多。这次的任务只是通过输入的分数的多少来评级
主函数实现:

package com.sample;

import java.util.Scanner;

import org.kie.api.KieServices;
import org.kie.api.runtime.KieContainer;
import org.kie.api.runtime.KieSession;

/**
 * This is a sample class to launch a rule.
 */
public class DroolsTest {

    public static final void main(String[] args) {
        try {
            // load up the knowledge base
            KieServices ks = KieServices.Factory.get();
            KieContainer kContainer = ks.getKieClasspathContainer();
            KieSession kSession = kContainer.newKieSession("ksession-rules");

            // go !
            Scanner in = new Scanner(System.in);
            System.out.println("请输入需要评级的分数:(输入0退出循环)");
            int data = in.nextInt();
            while(data!=0) {
                Score s = new Score(data);
                kSession.insert(s);
                kSession.fireAllRules();
                System.out.println("请输入需要评级的分数:(输入0退出循环)");
                data = in.nextInt();
            }
        } catch (Throwable t) {
            t.printStackTrace();
        }
    }
    public static class Score{
        public int score;
        Score(int Score){
            score = Score;
        }
        public int getScore() {
            return score;
        }
    }

}
规则文件的编写
package com.sample
 
import com.sample.DroolsTest.Score;
rule "ScoreA"
    when 
        Score(score > 90)
        
    then
        System.out.println("A");
end
rule "ScoreB+"
    when 
        Score(score >=87&&score<=89)
        
    then
        System.out.println("B+");
end
rule "ScoreB"
    when 
        Score(score >=80&&score<=86)
        
    then
        System.out.println("B");
end
rule "ScoreC+"
    when 
        Score(score >=77&&score<=79)
        
    then
        System.out.println("C+");
end
rule "ScoreC"
    when 
        Score(score >=70&&score<=76)
        
    then
        System.out.println("C");
end
rule "ScoreD+"
    when 
        Score(score >=67&&score<=69)
        
    then
        System.out.println("D+");
end
rule "ScoreD"
    when 
        Score(score >=60&&score<=66)
        
    then
        System.out.println("D");
end
rule "ScoreF"
    when 
        Score(score < 60)
        
    then
        System.out.println("F");
end
当我们运行时,输入1-100的数值,可以输出对应的评级
效果
结语:虽然看起来这个例子好像很傻的样子,但是在实际的应用过程中,如果我们要实现评级,不需要像往常一样,修改什么case 啊之类的源码,我们仅仅需要修改规则,就可以实现一样的效果,这是很有用的,很利于我们维护代码

友情链接:
Drols入门环境配置
Drools应用场景-小明的烦恼<---------很有趣可以看看

你可能感兴趣的:(Drools入门-实现评分专家系统)