Drools Fiddle is the fiddle for Drools, a business rule engine maintained by Redhat: https://www.drools.org/. The goal of this web tool is to allow technical or non technical users to play around with Drools. First, it allows you to build your business configuration by defining both fact models and business rules. Secondly, you can simulate the evaluation of your rule package by dynamically instanciating facts in the Drools working memory and trigger the fireAllRules method. A set of features have been implemented in order to enhance the user experience: step by step debugging, contribution, graphical visualization.
This project uses Jboss WildFly as Application Server.
In order to build and deploy this project you will need to fullfill those prerequisites:
- All WildFly prerequisites: https://docs.jboss.org/wildfly/plugins/maven/latest/dependencies.html
- Maven version > 3.1.1
- Java 8
- Docker daemon
- NodeJS
- Angular CLI
mvn clean install
mvn clean verify -Parq-wildfly-managed
mvn clean install -Pdocker
Access drools-fiddle at http://localhost/drools-fiddle
mvn docker:stop -Pdocker
When you have already built images then it is possible to start the drools-fiddle without maven. You can call either docker directly or use docker-compose.
Start the stack:
docker-compose up [--detach]
Stop the stack
docker-compose down
- Connect to http://droolsfiddle.tk/. The DRL editor is already filled with an HelloWorld package:
declare Fact
value : int
end
rule "Rule"
when
f : Fact(value == 42)
then
modify( f ) {setValue( 41 )}
end
- Click on the Build in order to trigger the compilation and build of the rule package.
- Insert an instance of Fact with 42 as a value and then Submit.
- Click on Fire in order to trigger the fireAllRules method and evaluate your ruleset.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request.
- Julien Vipret : julien.vipret [at] gmail [dot] com
- Matteo Casalino : matteo.casalino [at] gmail [dot] com
- Alexis OLIVARI : olivari.alexis0 [at] gmail [dot] com
- Thomas Palandri
- Jaona Ramahaleo
Copyright 2016 Drools Fiddle
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.