Drools入门之HelloWorld
最近开始学习Drools,打算写点笔记记录一下。首先从HelloWorld开始。
创建项目
第一步创建项目,我们创建一个maven项目,引入相关的依赖。这里我们学习的drools版本为7.10.0.Final
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>drools</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<drools.version>7.10.0.Final</drools.version>
<log4j2.version>2.14.1</log4j2.version>
</properties>
<dependencies>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-compiler</artifactId>
<version>${drools.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
</dependencies>
</project>
第一条规则
在resources目录下新建一个文件夹rules,然后在rules文件夹下,新建一个文件名叫hello.drl
package rules
rule "test001"
when
eval(true);
then
System.out.println("hello world");
end
如果用的是IDEA,可以下载一个叫做drools的插件,.drl的文件会改变图标和高亮显示
创建配置文件
我们还需要在resources目录下的META-INF(手动创建)文件夹下,新建一个kmodule.xml文件。内容如下
<?xml version="1.0" encoding="UTF-8"?>
<kmodule xmlns="http://www.drools.org/xsd/kmodule">
<kbase name="rules" packages="rules">
<ksession name="testhelloworld"/>
</kbase>
</kmodule>
规则文件以及配置文件的每个节点的具体含义,以后再做讲解,目前的首要任务是先实现hello world
调用规则
我们还需要创建调用规则的代码
import org.kie.api.KieServices;
import org.kie.api.runtime.KieContainer;
import org.kie.api.runtime.KieSession;
public class RulesHello {
public static void main(String[] args) {
KieServices kieService = KieServices.Factory.get();
KieContainer kieContainer = kieService.getKieClasspathContainer();
KieSession kieSession = kieContainer.newKieSession("testhelloworld");
int count = kieSession.fireAllRules();
System.out.println("总共执行了"+count+"条规则");
kieSession.dispose();
}
}
然后我们运行代码,规则就成功调用了,看到控制台的helloworld了吗?
hello world
总共执行了1条规则
Drools入门之HelloWorld
https://www.zhaojun.inkhttps://www.zhaojun.ink/archives/drools-hellowrold