-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Home
Welcome to easy rules wiki! This wiki contains documentation for version 4.x.
Easy Rules is a simple yet powerful Java rules engine providing the following features:
- Lightweight framework and easy to learn API
- POJO based development
- Useful abstractions to define business rules and apply them easily
- The ability to create composite rules from primitive ones
- The ability to define rules using an Expression Language (Like MVEL, SpEL and JEXL)
In a very interesting article about rules engines, Martin Fowler says:
You can build a simple rules engine yourself. All you need is to create a bunch of objects with conditions and actions, store them in a collection, and run through them to evaluate the conditions and execute the actions.
This is exactly what Easy Rules does, it provides the Rule
abstraction to create rules with conditions and actions, and the RulesEngine
API that runs through a set of rules to evaluate conditions and execute actions.
Easy Rules is created by Mahmoud Ben Hassine with the help of some awesome contributors
-
Introduction
-
User guide
-
Tutorials
-
Get involved