Drools date coercion and conditional OR

ぃ、小莉子 提交于 2019-12-24 15:22:13

问题


If I try a simple Drools rule with conditions on date type and uses conditional OR (||) I get the following error. If I change || to && it works fine. Is this a bug, known limitation or something wrong with my rule? I am using Drools 5.5.0 Final

Rule file

package net.madhura.drools.rules

import net.madhura.drools.DateContainer;

dialect "mvel"

rule "Test rule"
when
    $container: DateContainer(
        date >= "15-Oct-2013" || date <= "01-Oct-2013"
    )
then
    System.out.println("working");
end

DateContainer class

package net.madhura.drools;

import java.util.Date;

public class DateContainer {

    private Date date;

    public DateContainer(Date date) {
        this.date = date;
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }
}

Errors

Unable to Analyse Expression date >= "15-Oct-2013" || date <= "01-Oct-2013":
[Error: Comparison operation requires compatible types. Found class java.util.Date and class java.lang.String]
[Near : {... date >= "15-Oct-2013" || date <= "01-Oct-2013" ....}]
                                              ^
[Line: 9, Column: 1] : [Rule name='Test rule']

回答1:


Apparently this is a Drools bug which is now fixed. Bug report is here




回答2:


$container: DateContainer(date >= DateUtils.addDays(date ,-15))


来源:https://stackoverflow.com/questions/19263258/drools-date-coercion-and-conditional-or

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!