在eclipse上本地安装Drools6.4Final的时候出现两个组件无法正常安装的情况,具体组件如下: 具体的提示信息为: Cannot complete the install because one or more required items could not be found. Software being installed: JBoss Runtime Drools Detector 6.4.0.Final (org.jboss.tools.runtime.drools.det…
在Drools中,有的时候会出现一种情况,一个事实Fact,满足了两个规则. 比如Fact的POJO是下面的 public class Message { public static final int HELLO = 1; public static final int GOODBYE = 0; private String message; private int status; public String getMessage() { return message; } public vo…