如何通过JBOSS Drools </string>从List <string>获取字符串

时间:2013-07-24 12:59:08

标签: drools

我有List<String>我想要的东西如下

Rule "List_iterate"
 when
   $str : String from List<String>
 then 
    // some action of $str

1 个答案:

答案 0 :(得分:1)

使用列表作为事实不是一个好习惯。使用包装类总是很方便。但是如果你想使用List,你可以写下这样的东西:

Rule "List_iterate"
when
  $list : List()   //Be careful, this will match against all the Lists you have in your session.
  $str : String() from $list
then 
  // some action of $str
end

希望它有所帮助。