how to integrate drools with spring boot application
Overview: In this tutorial, i have explained how to integrate jboss drools rule engine with spring boot application by creating a simple spring boot rest api. - simple spring boot application, simple spring boot rest api, jboss drools rule engine integration with spring boot, simple spring boot get method rest api. Video This tutorial is explained in the below Youtube Video. The project structure is as follows- step 1: Create a new maven spring boot project using https://start.spring.io/ step 2: Add kie-ci dependency to pom.xml step 3: Create a model object named Test step 4: Create a .drl rules file under src/main/resources/META-INF/rules package rules import com.example.demo.Test rule "sla for ui" when testObject : Test(type==" ui ") then testObject .set Sla("15") ; end rule "sla for be" when testObject : Test(type=="be") then testObject .set Sla("30" ; end step 5: C...