Em dezembro de 2020, o Easy Rules está em modo de manutenção. Isso significa que apenas correções de bugs serão abordadas de agora em diante. A versão 4.1.x é a única versão suportada. Por favor, considere atualizar para esta versão o mais rápido possível.
Easy Rules é um mecanismo de regras Java inspirado em um artigo chamado "Devo usar um mecanismo de regras?" de Martin Fowler em que Martin diz:
Você mesmo pode construir um mecanismo de regras simples. Tudo o que você precisa é criar vários objetos com condições e ações, armazená-los em uma coleção e percorrê-los para avaliar as condições e executar as ações.
Isso é exatamente o que o Easy Rules faz, ele fornece a abstração Rule
para criar regras com condições e ações, e a API RulesEngine
que executa um conjunto de regras para avaliar condições e executar ações.
@ Rule ( name = "weather rule" , description = "if it rains then take an umbrella" )
public class WeatherRule {
@ Condition
public boolean itRains ( @ Fact ( "rain" ) boolean rain ) {
return rain ;
}
@ Action
public void takeAnUmbrella () {
System . out . println ( "It rains, take an umbrella!" );
}
}
Rule weatherRule = new RuleBuilder ()
. name ( "weather rule" )
. description ( "if it rains then take an umbrella" )
. when ( facts -> facts . get ( "rain" ). equals ( true ))
. then ( facts -> System . out . println ( "It rains, take an umbrella!" ))
. build ();
Rule weatherRule = new MVELRule ()
. name ( "weather rule" )
. description ( "if it rains then take an umbrella" )
. when ( "rain == true" )
. then ( "System.out.println( " It rains, take an umbrella! " );" );
Como no seguinte arquivo de exemplo weather-rule.yml
:
name : " weather rule "
description : " if it rains then take an umbrella "
condition : " rain == true "
actions :
- " System.out.println( " It rains, take an umbrella! " ); "
MVELRuleFactory ruleFactory = new MVELRuleFactory ( new YamlRuleDefinitionReader ());
Rule weatherRule = ruleFactory . createRule ( new FileReader ( "weather-rule.yml" ));
public class Test {
public static void main ( String [] args ) {
// define facts
Facts facts = new Facts ();
facts . put ( "rain" , true );
// define rules
Rule weatherRule = ...
Rules rules = new Rules ();
rules . register ( weatherRule );
// fire rules on known facts
RulesEngine rulesEngine = new DefaultRulesEngine ();
rulesEngine . fire ( rules , facts );
}
}
Este é o olá mundo das regras fáceis. Você pode encontrar outros exemplos como os tutoriais Shop, Airco ou WebApp no wiki.
Você está convidado a contribuir com o projeto com solicitações pull no GitHub. Observe que o Easy Rules está em modo de manutenção, o que significa que apenas solicitações pull para correções de bugs serão consideradas.
Se você acredita que encontrou um bug ou tem alguma dúvida, use o rastreador de problemas.
Obrigado a todos por suas contribuições!
Muito obrigado à YourKit, LLC por fornecer uma licença gratuita do YourKit Java Profiler para apoiar o desenvolvimento de Easy Rules.
Easy Rules é lançado sob os termos da licença do MIT:
The MIT License (MIT)
Copyright (c) 2021 Mahmoud Ben Hassine ([email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.