По состоянию на декабрь 2020 года Easy Rules находится в режиме обслуживания. Это означает, что с этого момента будут решаться только исправления ошибок. Версия 4.1.x является единственной поддерживаемой версией. Пожалуйста, рассмотрите возможность обновления до этой версии при первой же возможности.
Easy Rules — это механизм правил Java, созданный на основе статьи «Следует ли мне использовать механизм правил?» Мартина Фаулера, в котором Мартин говорит:
Вы можете создать простой механизм правил самостоятельно. Все, что вам нужно, — это создать группу объектов с условиями и действиями, сохранить их в коллекции и запускать их для оценки условий и выполнения действий.
Это именно то, что делает Easy Rules: он предоставляет абстракцию Rule
для создания правил с условиями и действиями, а также API RulesEngine
, который запускает набор правил для оценки условий и выполнения действий.
@ 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! " );" );
Как в следующем примере файла 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 );
}
}
Это привет, мир простых правил. Другие примеры, такие как руководства Shop, Airco или WebApp, можно найти в вики.
Вы можете внести свой вклад в проект с помощью запросов на включение на GitHub. Обратите внимание, что Easy Rules находится в режиме обслуживания, а это значит, что будут рассматриваться только запросы на исправление ошибок.
Если вы считаете, что нашли ошибку или у вас есть вопросы, воспользуйтесь системой отслеживания проблем.
Спасибо всем за ваш вклад!
Большое спасибо компании YourKit, LLC за предоставление бесплатной лицензии YourKit Java Profiler для поддержки разработки Easy Rules.
Easy Rules выпускается на условиях лицензии 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.