4

Drools 版本:6.3.0.Final

波乔:

public class Person {
    private Integer age;
    private Integer childrens;
    private String name;
    private String address;
    (...) 
}

DSL 文件:

[condition][]and=&&
[condition][]or=||
[condition][]is less than or equal to=<=
[condition][]is less than=<
[condition][]is greater than or equal to=>=
[condition][]is greater than=>
[condition][]is equal to===
[condition][]There is a [Pp]erson with=$person:Person()
[condition][].{field:\w*}  {operator}  {value:\d*}={field}  {operator}  {value}
(...)

DSRL 文件:

package <package>;

import <import class>.*

global org.slf4j.Logger logger;

expander <class>.dsl;

rule "R1"
    when
        There is a person with
        .age is greater than 10 or .chidldrens is less than 2 and .name is  equal to "<name>"
    then
        (...)
end 

rule "R2"
    when
        There is a person with
        (.age is greater than 10 or .childrens is less than 2) and .name is equal to "<name>"
    then
        (...)
end 

DRL(来自 R1):

(...)
rule "R1"
        when
            $person:Person(age > 10 || childrens < 2 && name = "<name>")
        then
            (...)
    end 
(...)

DRL(来自 R2):不生成规则。

如果我删除括号它正在工作,但带有括号的 DRL 文件没有正确生成。所以只有 R2 规则有效,但我的目标是 R1 规则。

任何想法?

4

2 回答 2

3

我想我找到了一个可能的解决方案,女巫是:

DSL 文件(用这个新条件替换):

[condition][]There is a [Pp]erson that {constraints}=$person:Person({constraints})
[condition][]{field:\w*}\s+{operator}\s+{value:\s*}={field}  {operator}  {value}

DSRL(从第一行开始定义约束):

(...)
There is a person that ((age is greater than 10 or chidldrens is less than 2) and name is equal to "<name>")
(...)

DRL(生成):

(...)
$person:Person((age > 10 || childrens < 2) && name == "name")
(...)

支持使用这个新的 DSL 定义括号并且它按预期工作。你怎么看@laune?

于 2015-12-17T14:10:15.833 回答
0

应使用以下 DSL 定义:

[condition][]There is a Person with=Person()
[condition][]- :{field:\w*}  {operator}  {value:\d*}=
            {field}  {operator}  {value}
[condition][]:{field:\w*}  {operator}  {value:\d*}=
             {field} {operator} {value}
# operators as in the question

和数码单反相机:

rule R1
when
There is a Person with
- :call_count is less than 10 or :name is equal to "Joe" 
- :points is greater than 5
then
    ...
end 

这导致

rule R1
when
Person(call_count  <  10 || name  ==  "Joe", points  >  5)
then
 ...
end 

6.3.0 DSL 扩展器中至少有两个错误。这曾经在 5.5 中工作,但在 DSL 解析中已经进行了一些“改进”。您应该在 Drools 错误报告网站上提出 JIRA。(但我认为 Drools 团队不会在 DSL 上花费任何时间或精力,当 6.x 开始工作时,它已被降级为 Step Child。

于 2015-12-16T20:51:07.130 回答