j-easy / easy-rules

The simple, stupid rules engine for Java
https://github.com/j-easy/easy-rules/wiki
MIT License
4.86k stars 1.05k forks source link

What conditions do you support? #352

Open Francyfx opened 3 years ago

Francyfx commented 3 years ago

like == && ?JDK or mysql support

daidai21 commented 3 years ago

Expression Language (Like MVEL, SpEL and JEXL) are supported. You can read wiki.

example:

"person.isAdult() == false"

"person.age > 18"

...