easy-rules spring boot集成使用二
【推荐阅读】微服务还能火多久?>>> 前边有简单使用spring boot + mvel + json 模版的格式,以下是集成spring spel的说明 具体的代码就不贴了,主要说明使用以及一些问题 注意对于beanResolver 的支持需要4.0.0-SNAPSHOT 版本 spel rule 代码定义 Rules rules = configRules. fetchConfigRules(); SpELRule spELRule = new SpELRule(); // setting an condition to be evaluated BeanResolver beanResolver = new SimpleBeanResovler( SpringBeanUtil. getApplicationContext()); spELRule. description( "bean demo"); spELRule. priority( 20); spELRule. when( "#user.age < 38"); spELRule. then( "@myService.setInfo(#user)", beanResolver); Facts facts = new Facts(); // 生成一个唯一id,方便基于数据id规则流程查询 user.