GithubHelp home page GithubHelp logo

zihaojiang / rule-engine-open Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rule-engine/rule-engine-open

0.0 0.0 0.0 314 KB

🔥🔥🔥📌 规则引擎开源版 📌 RuleEngine 基于web可视化配置,简单高效快捷。业务逻辑实现不再依赖于代码开发,可零代码实现复杂业务逻辑!

Home Page: http://ruleengine.cn

License: Apache License 2.0

Java 99.36% FreeMarker 0.64%

rule-engine-open's Introduction

📌 规则引擎 RuleEngine 📌

License GitHub Stars GitHub Forks GitHub issues Percentage of issues still open

开源不易,请尊重作者劳动成果,作者白天工作,晚上下班与周末维护此项目,如果对你有帮助辛苦给个star,这是对我最大的鼓励。

业务逻辑实现不再依赖于代码开发,可零代码实现复杂业务逻辑。

前端代码地址:https://gitee.com/qwding/rule-engine-front-v2
项目展示地址:http://ruleengine.cn/

联系方式:

关于提出Bug奖励

如果项目在使用过程中,发现项目缺陷或者漏洞等问题,可以在以下地址中提出问题反馈:
Gitee:https://gitee.com/qwding/rule-engine-v2/issues
Github:https://github.com/dingqianwen/rule-engine-v2/issues

技术文档

简单使用:...
详细文档:http://ruleengine.cn/doc

技术栈/版本介绍:

  • 所涉及的相关的技术有:
    • SpringBoot 2.2.11
    • RabbitMQ
    • Redis、Redisson
    • MySQL 5.7.9
    • Mybatis-plus
    • Maven 3.3
    • Swagger

规则如何调用

通过在 http://ruleengine.cn 配置规则,配置完成后我们就可以调用接口来执行引擎中的规则了

POST http://ruleserver.cn/ruleEngine/generalRule/execute
Content-Type: application/json

{
      "code": "phoneRuletest",
      "workspaceCode": "default",
      "accessKeyId": "略", 
      "accessKeySecret": "略",
      "param": {
            "phone": "13400000000"
      }
}

现在我们让此使用方式更加简单易用! 调用规则方项目pom.xml文件引入以下依赖

    <dependency>
        <groupId>cn.ruleengine</groupId>
        <artifactId>rule-engine-client</artifactId>
        <version>2.0</version>
    </dependency>

SpringBoot项目application.yml配置文件配置如下:

rule.engine:
  baseUrl: http://ruleserver.cn
  workspaceCode: default
  accessKeyId: root
  accessKeySecret: 123456
  # 可选配置
  feignConfig:
    request:
      connectTimeoutMillis: 3000
      readTimeoutMillis: 3500
    retryer:
      period: 2000
      maxPeriod: 2000
      maxAttempts: 3

然后编写如下代码进行测试:

@EnableRuleEngine
@RunWith(SpringRunner.class)
@SpringBootTest
public class RuleTest {

    @Resource
    private RuleEngineClient ruleEngineClient;

    @Test
    public void test() {
        // 构建规则请求参数
        PhoneTestRule phoneTestRule = new PhoneTestRule();
        phoneTestRule.setPhone("134000000000");
        // 调用执行引擎中的规则
        GeneralRule generalRule = this.ruleEngineClient.generalRule();
        Output output = generalRule.execute(phoneTestRule);
        System.out.println(output);
    }

}

@Data
@Model(code = "phoneRuletest")
public class PhoneTestRule {

    /**
     * 可选,默认code为属性name
     */
    @InputParameter(code = "phone")
    private String phone;

}

我们默认使用Feign请求,当然你也可以自定义,只需要在项目中配置如下代码:

@Component
@Import({RestTemplate.class})
public class RuleEngineClientConfig {

    @Resource
    private RestTemplate restTemplate;

    @Bean
    public GeneralRuleInterface generalRuleInterface() {
        return new GeneralRuleInterface() {

            @Override
            public ExecuteResult execute(ExecuteParam executeParam) {
                return restTemplate.postForObject("http://ruleserver.cn/ruleEngine/generalRule/execute", executeParam, ExecuteResult.class);
            }

            @Override
            public IsExistsResult isExists(IsExistsParam existsParam) {
                // TODO: 2020/12/30  
                return null;
            }

            @Override
            public BatchExecuteResult batchExecute(BatchParam batchParam) {
                // TODO: 2020/12/30  
                return null;
            }
        };
    }

}

现在你就已经学会了如何使用,更多使用方式敬请期待!

下一步进展

  • 优化代码,提高配置体验(进行中)
  • 规则版本(开发中)
  • 规则监控(待开发)
  • 评分卡(待开发)
  • 决策树(待开发)
  • 提供规则、规则集、决策表延迟加载功能,以及定时清理长时间未使用的规则、规则集、决策表功能(待开发)

目前忙于工作,功能待完善,欢迎有兴趣伙伴加入我们!

捐助霸王洗发水

作者为了此项目经常熬夜到凌晨才设计完成核心部分以及整体运转,头发掉很多,后来见到了传说中的霸王洗发水,看下自己的口袋,含下买不起的泪水,辛苦捐助一瓶霸王洗发水吧!

支付宝 微信
支付宝 微信

如果觉得本项目对您有任何一点帮助,请点右上角 "Star" 支持一下, 并向您的基友、同事们宣传一下吧,谢谢!

rule-engine-open's People

Contributors

dingqianwen avatar niuxiangqian avatar 211574329 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.