Drools的 - 检查是否存在/包含一个字符串列表(Drools - check if exist

2019-10-21 18:28发布

我需要创建一个规则来检查字符串的一部分列表[字符串]内部存在。 有没有一种办法,我能做到这一点?

我使用的是含有尝试,但它不工作。

rule "New Assistance"
    when
        $room:Room($tags : tags)
        //$room:Room(tags contains "protocol")
        $value:String() from $tags
        //Boolean(booleanValue == true) from $value == "protocol"
        Boolean(booleanValue == true) from $value.contains("protocol")
    then
        System.out.println("Error");
end

这里是我的代码

...
val room = new Room(null, List[User](), List[Message](message), 
            new Date, null, List[String]("protocol"))
kieSession.insert(room)
kieSession.fireAllRules()
....

谢谢!

//测试的java

import java.util.ArrayList;
import java.util.List;

public class Test { 
    public static void main(String[] args) {    
        List<String> tags = new ArrayList<>();
        tags.add("protocol");
        Room room = new Room(tags);
        System.out.println(room.tags.contains("protocol") );        
    }   
}

class Room {        
    public List<String> tags;

    public Room(List<String> tags){
        this.tags = tags;
    }   
}

//测试阶

val room = new Room(null, List[User](), List[Message](message), 
            new Date, null, List[String]("protocol"))

var xx = room.tags.contains("protocol")

无论返回true。

Answer 1:

rule "New Assistance"
when
    $room:Room($tags : tags contains "protocol")
then
    System.out.println("Error");
end


文章来源: Drools - check if exists/contains string in a List