A partir de diciembre de 2020, Easy Rules se encuentra en modo de mantenimiento. Esto significa que de ahora en adelante sólo se abordarán las correcciones de errores. La versión 4.1.x es la única versión compatible. Considere actualizar a esta versión lo antes posible.
Easy Rules es un motor de reglas Java inspirado en un artículo llamado "¿Debería utilizar un motor de reglas?" de Martin Fowler en el que Martin dice:
Usted mismo puede crear un motor de reglas simple. Todo lo que necesita es crear un montón de objetos con condiciones y acciones, almacenarlos en una colección y ejecutarlos para evaluar las condiciones y ejecutar las acciones.
Esto es exactamente lo que hace Easy Rules: proporciona la abstracción Rule
para crear reglas con condiciones y acciones, y la API RulesEngine
que ejecuta un conjunto de reglas para evaluar condiciones y ejecutar acciones.
@ 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 en el siguiente archivo de ejemplo 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 es el hola mundo de Easy Rules. Puedes encontrar otros ejemplos como los tutoriales de Shop, Airco o WebApp en la wiki.
Le invitamos a contribuir al proyecto con solicitudes de extracción en GitHub. Tenga en cuenta que Easy Rules está en modo de mantenimiento, lo que significa que solo se considerarán las solicitudes de extracción para corregir errores.
Si cree que encontró un error o tiene alguna pregunta, utilice el rastreador de problemas.
¡Gracias a todos por sus contribuciones!
Muchas gracias a YourKit, LLC por proporcionar una licencia gratuita de YourKit Java Profiler para respaldar el desarrollo de Easy Rules.
Easy Rules se publica bajo los términos de la licencia 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.