私はJSF2を使用しています。
値のリストから一致する値をチェックするメソッドがあります。
@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)}
しかし、それは私に与えました:
SEVERE [javax.enterprise.resource.webcontainer.jsf.context] (http-localhost/127.0.0.1:8080-5) java.lang.IllegalArgumentException: 引数の数が間違っています
ELからそのようなメソッドを実行する方法はありますか?