我想知道是否可以从那里检索 a Validator
,FacesContext
因为我可以从那里检索 id。通过做这个:
Iterator<String> ids = FacesContext.getCurrentInstance()
.getApplication().getValidatorIds();
我现在想Validator
通过使用这些 id 来获得一个。这可能吗?
我想知道是否可以从那里检索 a Validator
,FacesContext
因为我可以从那里检索 id。通过做这个:
Iterator<String> ids = FacesContext.getCurrentInstance()
.getApplication().getValidatorIds();
我现在想Validator
通过使用这些 id 来获得一个。这可能吗?
是的:
FacesContext.getCurrentInstance().getApplication().createValidator(java.lang.String validatorId);
请参阅javadoc。