Drools
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
|
| Drools | |
|---|---|
| Original authors | Bob McWhirte, Mark Proctor |
| Developer | The Apache Software Foundation |
| Initial release | August 1, 2005 |
| Stable release | 10.1.0
/ July 8, 2025[1] |
| Written in | Java |
| Operating system | Cross-platform |
| Platform | Java |
| Type | Rules engine, Decision management |
| License | Apache-2.0 |
| Website | kie |
| Repository | github |
Drools is a business rule management system (BRMS) with a forward and backward chaining inference-based rules engine, more correctly known as a production rule system, using an enhanced implementation of the Rete algorithm.
Drools supports the Java Rules Engine API (Java Specification Request 94) standard for its business rule engine and enterprise framework for the construction, maintenance, and enforcement of business policies in an organization, application, or service.
Drools in Apache Kie
Drools, as part of the Kie Community[2] has entered Apache Incubator in January, 2023.[3]
Red Hat Decision Manager
Red Hat Decision Manager (formerly Red Hat JBoss BRMS[4]) is a business rule management system and reasoning engine for business policy and rules development, access, and change management.[5] JBoss Enterprise BRMS is a productized version of Drools with enterprise-level support available. JBoss Rules is also a productized version of Drools, but JBoss Enterprise BRMS is the flagship product.[6]
Components of the enterprise version:[7]
- JBoss Enterprise Web Platform – the software infrastructure, supported to run the BRMS components only
- JBoss Enterprise Application Platform or JBoss Enterprise SOA Platform – the software infrastructure, supported to run the BRMS components only
- Business Rules Engine – Drools Expert using the Rete algorithm and the Drools Rule Language (DRL)[8]
- Business Rules Manager – Drools Guvnor - Guvnor is a centralized repository for Drools Knowledge Bases, with rich web-based GUIs, editors, and tools to aid in the management of large numbers of rules.[9]
- Business Rules Repository – Drools Guvnor
Drools and Guvnor are JBoss Community open source projects. As they are mature, they are brought into the enterprise-ready product JBoss Enterprise BRMS.
Components of the JBoss Community version:[10]
- Drools Guvnor (Business Rules Manager) – a centralized repository for Drools Knowledge Bases
- Drools Expert (rule engine) – uses the rules to perform reasoning
- Drools Flow (process/workflow), or jBPM 5 – provides for workflow and business processes
- Drools Fusion (event processing/temporal reasoning) – provides for complex event processing
- Drools Planner/OptaPlanner (automated planning) – optimizes automated planning, including NP-hard planning problems
Example
This example[11] illustrates a simple rule to print out information about a holiday in July. It checks a condition on an instance of the Holiday class, and executes Java code if that condition is true.
rule "validate holiday"
when
$h1 : Holiday( month == "july" )
then
System.out.println($h1.name + ":" + $h1.month);
end
The purpose of dialect "mvel" is to point the getter and setters of the variables of your Plain Old Java Object (POJO) classes.
Consider the above example, in which a Holiday class is used and inside the circular brackets (parentheses) "month" is used. So with the help of dialect "mvel" the getter and setters of the variable "month" can be accessed.
Dialect "java" is used to help us write our Java code in our rules. There is one restriction or characteristic on this. We cannot use Java code inside the "when" part of the rule but we can use Java code in the "then" part.
We can also declare a Reference variable $h1 without the $ symbol. There is no restriction on this. The main purpose of putting the $ symbol before the variable is to mark the difference between variables of POJO classes and Rules.
See also
References
- ^ "Drools - Releases". Retrieved 2025-04-11.
- ^ "KIE Community". Archived from the original on 2024-01-17.
- ^ "KIE Status". Archived from the original on 2023-12-25.
- ^ "JBoss Enterprise BRMS". Red Hat.
- ^ "JBoss Enterprise BRMS". Red Hat.
- ^ "JBoss Enterprise BRMS: Answers to frequently asked questions" (PDF). JBoss Community.
- ^ "JBoss Enterprise BRMS Platform 5.1". Red Hat. Archived from the original on 2011-03-18.
- ^ "JBoss Enterprise BRMS datasheet" (PDF). Red Hat. p. 4.
- ^ "Drools - Business Rules Management System (Java™, Open Source)".
- ^ "Drools 5 - The Business Logic integration Platform". JBoss Community.
- ^ http://downloads.jboss.com/drools/docs/5.1.1.34858.FINAL/drools-expert/html_single/index.html#d0e2676[permanent dead link]
External links
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.