drools

Deploy KIE-CI on Wildfly fails

半世苍凉 提交于 2021-02-19 07:11:27
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Deploy KIE-CI on Wildfly fails

我的梦境 提交于 2021-02-19 07:10:33
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Deploy KIE-CI on Wildfly fails

纵饮孤独 提交于 2021-02-19 07:10:28
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Deploy KIE-CI on Wildfly fails

不问归期 提交于 2021-02-19 07:10:09
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Deploy KIE-CI on Wildfly fails

三世轮回 提交于 2021-02-19 07:09:05
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Need to add multiple items in list - decision table - Drools

那年仲夏 提交于 2021-02-13 17:35:40
问题 I need to create a new multiple instance of objects for the Pojo class in drools decision table. I have implemented using two facts Student fact and subject fact class. I need to fire all the rules in the decision table and I need to add all the values into array-list of the objects. But I'm getting only last rule values of decision table. It seems like decision table values are getting overridden. Fact 1 Class StudentFact{ private int id; private String name; private List<SubejctFact>

Need to add multiple items in list - decision table - Drools

爷,独闯天下 提交于 2021-02-13 17:34:47
问题 I need to create a new multiple instance of objects for the Pojo class in drools decision table. I have implemented using two facts Student fact and subject fact class. I need to fire all the rules in the decision table and I need to add all the values into array-list of the objects. But I'm getting only last rule values of decision table. It seems like decision table values are getting overridden. Fact 1 Class StudentFact{ private int id; private String name; private List<SubejctFact>

How to save Drools KieSessions?

天涯浪子 提交于 2021-02-11 18:25:36
问题 I have more than 1000 rules to do inference. As the drools will process these rules in RETE algorithm before do inference, I found it cost so much time to do this and I know it is necessary. But I want it could be faster.So is these any way can store the KieSession to DataBase so that I could load it next time if I want to use it? I read the Drools Documentation Chapter 4.2.4.9 for Drools 6.3 but I still feel puzzled. Thanks for your help ! 来源: https://stackoverflow.com/questions/37180857/how

KIE Drool Workbench: Unable to get to workbench UI due to “Forbidden” screen

人盡茶涼 提交于 2021-02-11 14:31:01
问题 I have been trying follow the links and details available to set up a KIE Drools workbench for Drools like https://www.intertech.com/simple-setup-of-drools-kie-workbench-and-kie-server-in-one-wildfly-instance/. From what I could analyze and read up KIE Drools Workbench will let me configure a rule engine through a front end and that Guvnor used to handle this aspect prior to workbench. These configured rules can be blended into my Spring Boot application to drive my loan application

Generate drools drl file by using java

安稳与你 提交于 2021-02-11 12:49:47
问题 I m trying to create the drools drl file using java programmatically by following method. I can able to create the below simple rules by simple rule by java program. rule "Demo_testing" when $employee : EmployeeModel( department contains "Accounts" ) then // And this in one working fine for me, but i need get the employee information from list. Like $employee : EmployeeModel( department contains "Accounts", role = "manager" ) from $employeeList I found the list on descriptor available in