7

我正在使用 JSF 2。

我有一种方法可以检查值列表中的匹配值:

@ManagedBean(name="webUtilMB")
@ApplicationScoped
public class WebUtilManagedBean implements Serializable{ ...

public static boolean isValueIn(Integer value, Integer ... options){
    if(value != null){
        for(Integer option: options){
            if(option.equals(value)){
                return true;
            }
        }
    }
    return false;
}


...
}

要在 EL 中调用此方法,我尝试过:

#{webUtilMB.isValueIn(OtherBean.category.id, 2,3,5)}

但它给了我一个:

严重 [javax.enterprise.resource.webcontainer.jsf.context] (http-localhost/127.0.0.1:8080-5) java.lang.IllegalArgumentException:参数数量错误

有没有办法从 EL 执行这种方法?

4

1 回答 1

16

不,不能在 EL 方法表达式中使用可变参数,更不用说 EL 函数了。

您最好的选择是创建多个具有不同数量的固定参数的不同命名方法。

public static boolean isValueIn2(Integer value, Integer option1, Integer option2) {}
public static boolean isValueIn3(Integer value, Integer option1, Integer option2, Integer option3) {}
public static boolean isValueIn4(Integer value, Integer option1, Integer option2, Integer option3, Integer option4) {}
// ...

作为一个可疑的替代方案,您可以传递一个逗号分隔的字符串并将其拆分到方法中

#{webUtilMB.isValueIn(OtherBean.category.id, '2,3,5')}

甚至是由逗号分隔的字符串创建的字符串fn:split()数组

#{webUtilMB.isValueIn(OtherBean.category.id, fn:split('2,3,5', ','))}

但无论哪种方式,您仍然需要将它们解析为整数,或者将传入的整数转换为字符串。

如果您已经使用 EL 3.0,您还可以使用新的EL 3.0 集合语法,而无需整个 EL 函数。

#{[2,3,5].contains(OtherBean.category.id)}
于 2013-03-22T01:12:43.420 回答