SpringBoot集成Drools

版本

SpringBoot 3.2.0

JDK 17

Drools 9.44.0.Final

pom.xml 相关依赖

<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>3.2.0</version><relativePath/> <!-- lookup parent from repository -->
</parent>
<properties><java.version>17</java.version><drools-version>9.44.0.Final</drools-version>
</properties>
<dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-aop</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency><dependency><groupId>commons-lang</groupId><artifactId>commons-lang</artifactId><version>2.6</version></dependency><!--drools 规则引擎--><dependency><groupId>org.drools</groupId><artifactId>drools-core</artifactId><version>${drools-version}</version></dependency><dependency><groupId>org.drools</groupId><artifactId>drools-compiler</artifactId><version>${drools-version}</version></dependency><dependency><groupId>org.drools</groupId><artifactId>drools-templates</artifactId><version>${drools-version}</version></dependency><dependency><groupId>org.kie</groupId><artifactId>kie-api</artifactId><version>${drools-version}</version></dependency><dependency><groupId>org.drools</groupId><artifactId>drools-decisiontables</artifactId><version>${drools-version}</version></dependency><dependency><groupId>org.drools</groupId><artifactId>drools-xml-support</artifactId><version>${drools-version}</version></dependency><dependency><groupId>org.kie</groupId><artifactId>kie-ci</artifactId><version>${drools-version}</version></dependency><!--lombok插件--><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><optional>true</optional></dependency></dependencies>

配置文件

 

@Configuration
public class DroolsConfig {// 指定规则文件存放的目录private static final String RULES_PATH = "rules/";private final KieServices kieServices = KieServices.Factory.get();@Bean@ConditionalOnMissingBeanpublic KieFileSystem kieFileSystem() throws IOException {System.setProperty("drools.dateformat", "yyyy-MM-dd");KieFileSystem kieFileSystem = kieServices.newKieFileSystem();ResourcePatternResolver resourcePatternResolver =new PathMatchingResourcePatternResolver();Resource[] files =resourcePatternResolver.getResources("classpath*:" + RULES_PATH + "*.*");String path = null;for (Resource file : files) {path = RULES_PATH + file.getFilename();kieFileSystem.write(ResourceFactory.newClassPathResource(path, "UTF-8"));}return kieFileSystem;}@Bean@ConditionalOnMissingBeanpublic KieContainer kieContainer() throws IOException {KieRepository kieRepository = kieServices.getRepository();kieRepository.addKieModule(kieRepository::getDefaultReleaseId);KieBuilder kieBuilder = kieServices.newKieBuilder(kieFileSystem());kieBuilder.buildAll();return kieServices.newKieContainer(kieRepository.getDefaultReleaseId());}@Bean@ConditionalOnMissingBeanpublic KieBase kieBase() throws IOException {return kieContainer().getKieBase();}}

规则文件 calculation.drl   文件路径: resources/rules/calculation.drl 

 

//package calculation
import com.example.calculation.entity.Calculationrule "个人所得税:计算应纳税所得额"enabled truesalience 3no-loop truedate-effective "2011-09-01" //生效日期when$cal : Calculation(wage>0)then$cal.setWagemore($cal.getWage()-3500);update($cal);
endrule "个人所得税:设置税率-->>应纳税所得额<=1500"salience 2no-loop trueactivation-group "SETCess_Group"when$cal : Calculation(wagemore <= 1500)then$cal.setCess(0.03);$cal.setPreminus(0);update($cal);
endrule "个人所得税:设置税率-->>应纳税所得额在1500至4500之间"salience 2no-loop trueactivation-group "SETCess_Group"when$cal : Calculation(wagemore > 1500 && wagemore <= 4500)then$cal.setCess(0.1);$cal.setPreminus(105);update($cal);
endrule "个人所得税:设置税率-->>应纳税所得额在4500志9000之间"salience 2no-loop trueactivation-group "SETCess_Group"when$cal : Calculation(wagemore > 4500 && wagemore <= 9000)then$cal.setCess(0.2);$cal.setPreminus(555);update($cal);
endrule "个人所得税:设置税率-->>应纳税所得额在9000志35000之间"salience 2no-loop trueactivation-group "SETCess_Group"when$cal : Calculation(wagemore > 9000 && wagemore <= 35000)then$cal.setCess(0.25);$cal.setPreminus(1005);update($cal);
endrule "个人所得税:设置税率-->>应纳税所得额在35000至55000之间"salience 2no-loop trueactivation-group "SETCess_Group"when$cal : Calculation(wagemore > 35000 && wagemore <= 55000)then$cal.setCess(0.3);$cal.setPreminus(2755);update($cal);
endrule "个人所得税:设置税率-->>应纳税所得额在55000至80000之间"salience 2no-loop trueactivation-group "SETCess_Group"when$cal : Calculation(wagemore > 55000 && wagemore <= 80000)then$cal.setCess(0.35);$cal.setPreminus(5505);update($cal);
endrule "个人所得税:设置税率-->>应纳税所得额在80000以上"salience 2no-loop trueactivation-group "SETCess_Group"when$cal : Calculation(wagemore > 80000)then$cal.setCess(0.45);$cal.setPreminus(13505);update($cal);
endrule "个人所得税:计算税后工资"salience 1when$cal : Calculation(wage > 0 && wagemore > 0 && wagemore > 0 && cess > 0)then$cal.setWageminus($cal.getWagemore()*$cal.getCess()-$cal.getPreminus());$cal.setActualwage($cal.getWage()-$cal.getWageminus());System.out.println("-----税前工资:"+$cal.getWage());System.out.println("-----应纳税所得额:"+$cal.getWagemore());System.out.println("-----税率:" + $cal.getCess());System.out.println("-----速算扣除数:" + $cal.getPreminus());System.out.println("-----扣税额:" + $cal.getWageminus());System.out.println("-----税后工资:" + $cal.getActualwage());
end

 

使用

 

@Service
public class RuleService {@Autowiredprivate KieBase kieBase;public Calculation calculate(Calculation calculation) {KieSession kieSession = kieBase.newKieSession();kieSession.insert(calculation);kieSession.fireAllRules();kieSession.dispose();return calculation;}}

验证可以使用 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/232433.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

elementui el-pagination分页组件查询的时候当前页不更新

elementui el-pagination分页组件查询的时候当前页不更新 <mypagination v-if"pageshow" :currentPage.sync"pageNum" :pagesize"pageSize" :pagetotal"pageTotal" pagefunc"pageFunc"></mypagination>1.在加的…

运维知识点-Kubernetes_K8s

Kubernetes RBAC配置不当攻击场景攻击过程 RBAC配置不当 Service Account本质是服务账号&#xff0c;是Pod连接K8s集群的凭证。 在默认情况下&#xff0c;系统会为创建的Pod提供一个默认的Service Account&#xff0c; 用户也可以自定义Service Account&#xff0c;与Service…

目标检测——YOLO算法解读(通俗易懂版)

论文&#xff1a;You Only Look Once: Unified, Real-Time Object Detection 作者&#xff1a;Joseph Redmon, Santosh Divvala, Ross Girshick, Ali Farhadi 链接&#xff1a;https://arxiv.org/abs/1506.02640 代码&#xff1a;http://pjreddie.com/yolo/ yolo系列检测算法开…

Excel小技能:excel如何将数字20231211转化成指定日期格式2023/12/11

给了一串数字20231211&#xff0c;想要转成指定格式的日期格式&#xff0c;发现设置单元格格式为指定日期格式不生效&#xff0c;反而变成很长很长的一串#这个&#xff0c;如图所示&#xff1a; 其实&#xff0c;正确的做法如下&#xff1a; 1&#xff09;打开数据功能界面&am…

谷达冠楠科技:抖音店铺被退店是什么意思

随着互联网的普及和发展&#xff0c;电商平台已经成为了人们购物的主要渠道之一。在众多的电商平台中&#xff0c;抖音作为短视频领域的佼佼者&#xff0c;也吸引了大量的商家入驻。然而&#xff0c;有些商家可能会遇到抖音店铺被退店的情况&#xff0c;那么这究竟是什么意思呢…

病案管理的定义、流程及应用分析

病案管理是指针对病人的基本信息&#xff0c;病历&#xff0c;就诊记录等进行收集、整理、存储、分析和应用的一项管理工作。它在医院、医疗机构和医疗行业中具有重要的作用&#xff0c;能够提高医疗服务的质量、效率和安全性。本文将就病案管理的定义、流程以及其在医疗健康领…

Ubuntu22,通过Systemctl管理,加入开机启动项,实现服务或脚本开机自启

Ubuntu22,通过Systemctl管理,加入开机启动项,实现服务或脚本开机自启,方法如下 一、介绍 systemd 是 linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度。systemd 和 ubuntu 的 upstart 是竞争对手,但是时至今日 ub…

React实现全局Loading

css #__loading {position:fixed;top: 0;left: 0;z-index: 99999;display: flex;align-items: center;justify-content: center;width: 100%;height: 100%;background: rgba(0, 0, 0, 0); } 页面代码 使用了antd的Spin组件 import React from react import ReactDOM from re…

编程序中的魔法语句|循环-使用频率高的优雅代码

一. print和import的更多信息 1.1 使用逗号输出 A.打印多个表达式,用逗号隔开,会在每个参数之间插入一个空格符: 复制代码代码如下: >>> print age:,42 age: 42 B.同时输出文本和变量值,却又不希望使用字符串格式化: 复制代码代码如下: >>> name = Pe…

emmc存储大小解决方案

当发现emmc space 0.2G或者为0 的时候说名emmc有问题了&#xff0c;正常情况下是3.98G。 所以需要做如下处理&#xff1a; 输入&#xff1a;第一步&#xff1a;mkfs.ext4 /dev/mmcblk0p1 &#xff08;格式&#xff1a;mkfs.ext4 参数 设备名 原文链接&#xff1a;mkfs.ext4 命…

(c语言)字符逆序——非递归

#include<stdio.h> #include<string.h> int main(int argc, char* argv[]) {char a[10000];char b[10000];gets(a);int i, c;c (int)strlen(a);for (i 0; i < c; i){b[i] a[c-i-1]; //将\0之前的元素赋值给b[]}b[c] \0; //之后在所有元素后加上\0,将…

优思学院|调优操作(EVOP)是什么?

EVOP是Evolutionary Operation的缩写&#xff0c;中文多译作&#xff0c;调优操作&#xff0c;意思是进化地操作&#xff0c;也是实验设计方法中的其中一种&#xff0c;可以应用于六西格玛流程DMAIC里的改进阶段。 调优操作&#xff08;EVOP&#xff09;是一种用于改善过程或产…

Mac安装Nginx

一起学习 1、确认你的电脑是否安装homebrew&#xff0c;打开电脑终端 输入&#xff1a; /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"2、确认homebrew是否安装成功&#xff0c;在终端输入&#xff1a; br…

怎么远程控制电脑?两种方法轻松实现!

不知道电脑远程控制怎么弄&#xff1f;本文将分享两种简单又实用的远程控制方法&#xff0c;能够让你轻松的远程控制电脑。远程控制一直是一个备受关注的话题&#xff0c;无论在何种场合都能发挥作用。掌握了远程控制的方法&#xff0c;不仅能够快速解决紧急问题&#xff0c;还…

【老牌期刊】IF:6+,2天预审,3-5个月录用!

期刊简介 1区计算机智能类SCI 【期刊概况】IF&#xff1a;6.0-7.0&#xff0c;JCR1区&#xff0c;中科院2区&#xff1b; 【终审周期】走期刊部系统&#xff0c;3个月左右录用&#xff1b; 【检索情况】SCI检索&#xff1b; 【WOS收录年份】2018年&#xff1b; 【自引率】…

用友 CRM help2.php存在任意文件读取漏洞

文章目录 产品简介漏洞概述指纹识别漏洞利用修复建议 产品简介 用友CRM&#xff08;Customer Relationship Management&#xff0c;客户关系管理&#xff09;是由用友公司开发的一款软件&#xff0c;专门设计用于帮助企业管理与客户相关的业务活动。这款软件通常包括客户信息管…

windows 安装jenkins

下载jenkins 官方下载地址&#xff1a;Jenkins 的安装和设置 清华源下载地址&#xff1a;https://mirrors.tuna.tsinghua.edu.cn/jenkins/windows-stable/ 最新支持java8的版本时2.346.1版本&#xff0c;在清华源中找不到&#xff0c;在官网中没找到windows的下载历史&#xff…

Python数据容器详解

文章目录 数据容器list 列表定义使用方法查找下标列表修改插入追加删除修改查询循环遍历 tuple 元组定义操作 str 字符串方法查找下标替换分割去除前后空格去除前后指定字符统计字符串出现次数统计字符串长度 序列的切片序列序列的切片 set 集合定义方法添加移除随机取出清空差…

单项链表的反转中,不能成功反转

package day5;import java.util.Stack; import java.util.zip.DeflaterOutputStream;/*** Author: monian* Tips: Wo yi wu ta,wei shou shu er!* Date: 2023/12/19 9:33*/ public class ArrayStackDemo3 {public static void main(String[] args) {//测试SingleLinkedStack st…

UE5 Landscape地貌制作 - 学习笔记

P2. 创建地形 https://www.bilibili.com/video/BV1mD4y1D7D6?p2&spm_id_frompageDriver&vd_source707ec8983cc32e6e065d5496a7f79ee6 新建一个Basic场景选择Landscape Mode 生成预览网格&#xff08;绿色网格&#xff09;从文件导入&#xff1a;可以导入dem高度图地貌…