🔥本项目系统是一款基于web可视化配置,简单高效快捷。业务逻辑实现不再依赖于代码开发,可零代码实现复杂业务逻辑!扩展:刚刚,被 GPT-4 价格劝退了!
技术栈/版本介绍:
所涉及的相关的技术有:
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文件引入以下依赖。另外,搜索公众号Linux就该这样学后台回复“Linux”,获取一份惊喜礼包。
cn.ruleengine
rule-engine-client
2.0
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;
}
};
}
}






牛逼啊!接私活必备的 N 个开源项目!赶快收藏
现在你就已经学会了如何使用,更多使用方式敬请期待!
功能演示




