0

我在 Drools 中使用了一个返回类型为 map 的函数。在使用 Guvnor 中的验证按钮对其进行验证时,它给了我错误

下面给出了与我的代码类似的示例代码

function Map<String,String> MyRule(String a){

Map<String,String> MyMap = new HashMap<String,String>();
MyMap.put("TestKey","TestValue");
return MyMap;

}

我在验证时遇到的错误是

Mismatched input '<' expecting '(' in function Map
4

0 回答 0