I\'ve just now started my new project. My project manager said that Drools is the new technology and we will include drools flow and rules and will integrate our web application
It depends on what technologies you use. If, for example, you use Java+Maven+Spring, you first need to include Drools dependencies:
org.drools
drools-core
${drools.version}
org.drools
drools-compiler
${drools.version}
org.drools
drools-spring
${drools.version}
Define the application context:
Then you can inject ksession1
as a bean.