ณ เดือนธันวาคม 2020 Easy Rules อยู่ในโหมดบำรุงรักษา ซึ่งหมายความว่านับจากนี้เป็นต้นไปจะมีการแก้ไขข้อบกพร่องเท่านั้น เวอร์ชัน 4.1.x เป็นเวอร์ชันเดียวที่รองรับ โปรดพิจารณาอัปเกรดเป็นเวอร์ชันนี้โดยเร็วที่สุด
Easy Rules คือกลไกจัดการกฎของ Java ที่ได้รับแรงบันดาลใจจากบทความชื่อ "ฉันควรใช้ Rules Engine หรือไม่" ของ Martin Fowler ซึ่ง Martin พูดว่า:
คุณสามารถสร้างกฎง่ายๆ ได้ด้วยตัวเอง สิ่งที่คุณต้องมีคือสร้างกลุ่มออบเจ็กต์ที่มีเงื่อนไขและการดำเนินการ เก็บไว้ในคอลเลกชัน และเรียกใช้เพื่อประเมินเงื่อนไขและดำเนินการ
นี่คือสิ่งที่ Easy Rules ทำ โดยให้ Rule
เป็นนามธรรมเพื่อสร้างกฎที่มีเงื่อนไขและการดำเนินการ และ RulesEngine
API ที่ทำงานผ่านชุดกฎเพื่อประเมินเงื่อนไขและดำเนินการ
@ 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 );
}
}
นี่คือโลกแห่งสวัสดีของ Easy Rules คุณสามารถค้นหาตัวอย่างอื่นๆ เช่น บทช่วยสอน Shop, Airco หรือ WebApp ได้ในวิกิ
คุณสามารถมีส่วนร่วมในโครงการด้วยคำขอดึงบน GitHub โปรดทราบว่ากฎง่าย ๆ อยู่ในโหมดบำรุงรักษา ซึ่งหมายความว่าจะพิจารณาเฉพาะคำขอดึงเพื่อแก้ไขข้อบกพร่องเท่านั้น
หากคุณเชื่อว่าคุณพบจุดบกพร่องหรือมีคำถามใดๆ โปรดใช้เครื่องมือติดตามปัญหา
ขอขอบคุณทุกท่านสำหรับการมีส่วนร่วมของคุณ!
ขอขอบคุณ 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.