UIComponent の EL 式で使用される Bean オブジェクトにアクセスする必要があります。
たとえば、このサンプル コードでは次のようになります。
xhtml:
<h:form>
<f:view>
<p:selectBooleanButton value="#{baseBean.selected}" onLabel="Instalar" offLabel="Ignorar" onIcon="ui-icon-check" offIcon="ui-icon-close">
<f:validator validatorId="baseValidator.items" />
</p:selectBooleanButton>
<p:commandButton type="submit" value="Submit"
actionListener="#{baseBean.process}"
ajax="false" />
</f:view>
</h:form>
ジャバ:
@FacesValidator("baseValidator.items")
public static class BaseValidator implements Validator
{
@Override
public void validate(FacesContext context, UIComponent component,
Object value) throws ValidatorException {
ValueReference reference = component.getValueExpression("value").getValueReference(context.getELContext());
Object o1 = reference.getBase();
Object o2 = reference.getProperty();
return; //break point here
}
}
コマンド ボタンが押されたときに実行されるオブジェクトBaseValidator.validate
を取得する必要があります。baseBean
<p:selectBooleanButton value="#{baseBean.selected}">
nullを返すNullPointerException
ため、私のコードは現在スローしています。検証メソッド内でそのオブジェクトを取得するにはどうすればよいですか?getValueReference