返回顶部
首页 > 资讯 > 精选 >SpringBoot集成easy-rules规则引擎的流程是什么
  • 124
分享到

SpringBoot集成easy-rules规则引擎的流程是什么

2023-07-05 17:07:48 124人浏览 八月长安
摘要

这篇文章主要讲解了“SpringBoot集成easy-rules规则引擎的流程是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“springBoot集成easy-rules规则引擎的流程是

这篇文章主要讲解了“SpringBoot集成easy-rules规则引擎的流程是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“springBoot集成easy-rules规则引擎的流程是什么”吧!

一、概述

通过将业务规则配置的配置文件中,可以精简代码,同时已于维护,当规则修改时,只需要修改配置文件即可。easy-rules是一个小巧的规则引擎,支持spring的SPEL表达式,同时还支持 Apache JEXL 表达式和 MVL 表达式。

二、项目中加入依赖

在项目的gradle中增加依赖关系。

build.gradle:

plugins {
    id 'org.springframework.boot' version '3.0.5'
    id 'io.spring.dependency-management' version '1.1.0'
    id 'java'
}

group = 'cn.sprinGCamp'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'

configurations {
    compileOnly {
        extendsFrom annotationProcessor
    }
    testCompileOnly {
        extendsFrom testAnnotationProcessor
    }
}

repositories {
    MavenCentral()
}

dependencies {
    implementation "org.springframework.boot:spring-boot-starter-JSON"
    implementation 'org.springframework.boot:spring-boot-starter-validation'
    implementation 'org.jeasy:easy-rules-core:4.1.0'
    implementation 'org.jeasy:easy-rules-spel:4.1.0'
    implementation 'org.jeasy:easy-rules-support:4.1.0'
    annotationProcessor 'org.projectlombok:lombok'
    testAnnotationProcessor 'org.projectlombok:lombok'
    testImplementation "org.springframework.boot:spring-boot-starter-test"
    testImplementation 'org.junit.vintage:junit-vintage-engine'
    testImplementation 'org.junit.vintage:junit-vintage-engine'
}

dependencyManagement {
    imports {
        mavenBom "org.springframework.cloud:spring-cloud-dependencies:2022.0.1"
    }
}

test {
    useJUnitPlatfORM()
}

三、配置文件

示例程序将业务规则放到配置文件中,业务规则配置文件(demo-rule.yml)代码:

name: "age rule"
description: ""
priority: 1
condition: "#person.getAdult() == false"
actions:
  - "T(java.lang.System).out.println(\"Shop: Sorry, you are not allowed to buy alcohol\")"
  - "#person.setAdult(true)"
  - "#person.setAge(18)"
---
name: "alcohol rule"
description: ""
priority: 1
condition: "#person.getAdult() == true"
actions:
  - "T(java.lang.System).out.println(\"Shop: you are now allowed to buy alcohol\")"

配置文件中的规则通过 condition 进行配置,当满足规则时,会调用 actions 中配置的动作。

示例项目使用了spring的SPEL表达式进行规则配置,配置文件中配置了2个规则,第一个规则通过 person这个spring bean中的getAdult()判断是否满足规则,满足规则时调用三个方法。

在spring-boot本身的配置文件中 application.yml 配置规则文件:

rule:
  skip-on-first-failed-rule: true
  skip-on-first-applied-rule: false
  skip-on-first-non-triggered-rule: true
  rules:
    - rule-id: "demo"
      rule-file-location: "classpath:demo-rule.yml"

四、代码中对规则引擎进行配置

通过 RuleEngineConfig这个spring的配置类对规则引擎进行配置:

@Slf4j@EnableConfigurationProperties(RuleEngineConfigProperties.class)@Configurationpublic class RuleEngineConfig implements BeanFactoryAware {    @Autowired(required = false)    private List<RuleListener> ruleListeners;    @Autowired(required = false)    private List<RulesEngineListener> rulesEngineListeners;    private BeanFactory beanFactory;    @Bean    public RulesEngineParameters rulesEngineParameters(RuleEngineConfigProperties properties) {        RulesEngineParameters parameters = new RulesEngineParameters();        parameters.setSkipOnFirstAppliedRule(properties.isSkipOnFirstAppliedRule());        parameters.setSkipOnFirstFailedRule(properties.isSkipOnFirstFailedRule());        parameters.setSkipOnFirstNonTriggeredRule(properties.isSkipOnFirstNonTriggeredRule());        return parameters;    }    @Bean    public RulesEngine rulesEngine(RulesEngineParameters rulesEngineParameters) {        DefaultRulesEngine rulesEngine = new DefaultRulesEngine(rulesEngineParameters);        if (!CollectionUtils.isEmpty(ruleListeners)) {            rulesEngine.reGISterRuleListeners(ruleListeners);        }        if (!CollectionUtils.isEmpty(rulesEngineListeners)) {            rulesEngine.registerRulesEngineListeners(rulesEngineListeners);        }        return rulesEngine;    }    @Bean    public BeanResolver beanResolver() {        return new BeanFactoryResolver(beanFactory);    }    @Bean    public RuleEngineTemplate ruleEngineTemplate(RuleEngineConfigProperties properties, RulesEngine rulesEngine) {        RuleEngineTemplate ruleEngineTemplate = new RuleEngineTemplate();        ruleEngineTemplate.setBeanResolver(beanResolver());        ruleEngineTemplate.setProperties(properties);        ruleEngineTemplate.setRulesEngine(rulesEngine);        return ruleEngineTemplate;    }    @Bean    public RuleListener defaultRuleListener() {        return new RuleListener() {            @Override            public boolean beforeEvaluate(Rule rule, Facts facts) {                return true;            }            @Override            public void afterEvaluate(Rule rule, Facts facts, boolean b) {                log.info("-----------------afterEvaluate-----------------");                log.info(rule.getName() + rule.getDescription() + facts.toString());            }            @Override            public void beforeExecute(Rule rule, Facts facts) {                log.info("-----------------beforeExecute-----------------");                log.info(rule.getName() + rule.getDescription() + facts.toString());            }            @Override            public void onSuccess(Rule rule, Facts facts) {                log.info("-----------------onSuccess-----------------");                log.info(rule.getName() + rule.getDescription() + facts.toString());            }            @Override            public void onFailure(Rule rule, Facts facts, Exception e) {                log.info("-----------------onFailure-----------------");                log.info(rule.getName() + "----------" + rule.getDescription() + facts.toString() + e.toString());            }        };    }    @Override    public void setBeanFactory(BeanFactory beanFactory) throws BeansException {        this.beanFactory = beanFactory;    }}

配置文件中配置了 ruleEngineTemplate这个spring bean,通过ruleEngineTemplate触发规则引擎的执行。

五、执行规则引擎

ruleEngineTemplate配置好后,我们可以在业务代码中执行规则引擎,处理配置文件中配置的业务规则:

最为演示,我们将规则引擎的执行代码放到了 Application 的 run 方法中,程序启动后立即执行规则引擎:

@SpringBootApplicationpublic class Application implements CommandLineRunner {    @Autowired    RuleEngineTemplate ruleEngineTemplate;    public static void main(String[] args) {        SpringApplication.run(Application.class, args);    }    @Override    public void run(String... args) {        Person person = new Person();        Facts facts = new Facts();        facts.put("person", person);        ruleEngineTemplate.fire("demo", facts);    }}

程序执行后可以看到控制台里打印了 Shop: Sorry, you are not allowed to buy alcohol,这个内容对应的是我们在规则文件中的actions中配置的 "T(java.lang.System).out.println(\"Shop: Sorry, you are not allowed to buy alcohol\")",说明规则成功执行了。

感谢各位的阅读,以上就是“SpringBoot集成easy-rules规则引擎的流程是什么”的内容了,经过本文的学习后,相信大家对SpringBoot集成easy-rules规则引擎的流程是什么这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

--结束END--

本文标题: SpringBoot集成easy-rules规则引擎的流程是什么

本文链接: https://lsjlt.com/news/353790.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • SpringBoot集成easy-rules规则引擎的流程是什么
    这篇文章主要讲解了“SpringBoot集成easy-rules规则引擎的流程是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“SpringBoot集成easy-rules规则引擎的流程是...
    99+
    2023-07-05
  • drools规则引擎是什么
    推荐教程:java教程Drools简介  Drools(JBoss Rules )具有一个易于访问企业策略、易于调整以及易于管理的开源业务规则引擎,符合业内标准,速度快、效率高。业务分析师或审核人员可以利用它轻松查看业务规则,从而检验是否已...
    99+
    2018-04-29
    java教程 drools java
  • java中的规则引擎是什么
    今天就跟大家聊聊有关java中的规则引擎是什么,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。Java可以用来干什么Java主要应用于:1. web开发;2. Android开发;3....
    99+
    2023-06-14
  • SpringBoot整合Drools规则引擎动态生成业务规则的实现
          最近的项目中,使用的是flowable工作流来处理业务流程,但是在业务规则的配置中,是在代码中直接固定写死的,领导说这样不好,需要规则可以动态变化,可以通过页面去动态配置...
    99+
    2024-04-02
  • SpringBoot整合Drools规则引擎动态生成业务规则怎么实现
    这篇文章主要介绍“SpringBoot整合Drools规则引擎动态生成业务规则怎么实现”,在日常操作中,相信很多人在SpringBoot整合Drools规则引擎动态生成业务规则怎么实现问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作...
    99+
    2023-06-22
  • postgresql索引的排序规则是什么
    在PostgreSQL中,索引的排序规则取决于索引的类型。主要有以下几种排序规则: B-tree 索引:B-tree 是最常见的...
    99+
    2024-04-09
    postgresql
  • mysql建立索引的规则是什么
    建立索引的规则如下: 唯一性:索引列的值应该是唯一的,这样可以通过索引来确保数据的唯一性。 选择性:索引列的值应该具有高选择...
    99+
    2024-04-09
    mysql
  • php操作ElasticSearch搜索引擎流程是什么
    本篇内容主要讲解“php操作ElasticSearch搜索引擎流程是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“php操作ElasticSearch搜索引擎流程是什么”吧!一、安装通过co...
    99+
    2023-06-25
  • springboot集成线程池的方法是什么
    在Spring Boot中集成线程池可以通过以下方法进行: 添加依赖:在pom.xml文件中添加以下依赖: org.s...
    99+
    2023-10-21
    springboot
  • SpringBoot的@Autowired注解注入规则是什么
    这篇文章主要讲解了“SpringBoot的@Autowired注解注入规则是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“SpringBoot的@Autowired注解注入规则是什么”吧...
    99+
    2023-06-25
  • MySQL字符集排序的规则是什么
    MySQL字符集排序规则是根据字符的二进制值来进行排序的。不同的字符集具有不同的排序规则,比如在Latin1字符集中,按照ASCII...
    99+
    2024-04-09
    MySQL
  • golang工作流引擎的原理是什么
    Golang工作流引擎的原理是通过定义和执行一系列工作流程来实现业务逻辑的自动化处理和流程管理。以下是工作流引擎的基本原理: 工...
    99+
    2024-02-29
    golang
  • SpringBoot集成ElasticSearch的代码是什么
    这篇“SpringBoot集成ElasticSearch的代码是什么”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Sprin...
    99+
    2023-06-29
  • springboot集成teams的方法是什么
    本篇内容主要讲解“springboot集成teams的方法是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“springboot集成teams的方法是什么”吧!添加依赖<dependen...
    99+
    2023-06-28
  • SpringBoot集成tomcat的方法是什么
    这篇文章主要介绍“SpringBoot集成tomcat的方法是什么”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“SpringBoot集成tomcat的方法是什么”文章能帮助大家解决问题。spring...
    99+
    2023-07-05
  • springboot集成ffmpeg的方法是什么
    要在Spring Boot中集成FFmpeg,你可以使用Java-FFmpeg库来实现。下面是一些集成FFmpeg的步骤: 添加J...
    99+
    2023-10-23
    springboot ffmpeg
  • Springboot集成lombok.jar的方法是什么
    本文小编为大家详细介绍“Springboot集成lombok.jar的方法是什么”,内容详细,步骤清晰,细节处理妥当,希望这篇“Springboot集成lombok.jar的方法是什么”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一...
    99+
    2023-07-06
  • springboot集成hadoop的方法是什么
    Spring Boot集成Hadoop的方法是通过在Spring Boot应用程序中使用HDFS客户端来访问和操作Hadoop集群。...
    99+
    2024-03-14
    hadoop springboot
  • springboot集成mybatis的方法是什么
    要在Spring Boot中集成MyBatis,可以按照以下步骤进行操作: 添加MyBatis和MyBatis-Spring的依赖...
    99+
    2024-03-07
    springboot mybatis
  • SpringBoot+Thymeleaf静态资源的映射规则是什么
    本篇内容介绍了“SpringBoot+Thymeleaf静态资源的映射规则是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!Spring ...
    99+
    2023-06-25
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作