从FacesContext中检索Validator

时间:2013-08-20 06:57:41

标签: jsf validation facescontext

我想知道是否可以从Validator检索FacesContext,因为我可以从那里检索ID。通过这样做:

Iterator<String> ids = FacesContext.getCurrentInstance()
                .getApplication().getValidatorIds();

我现在想通过使用这些ID获得Validator。这可能吗?

1 个答案:

答案 0 :(得分:2)

是:

FacesContext.getCurrentInstance().getApplication().createValidator(java.lang.String validatorId);

请参阅javadoc