Should I register a custom validator in faces-config.xml if I\'m using JSF 2.0.4?
My custom validator uses Validator interface which is javax.faces.valida
No. That is not necessary with Jsf 2.0. Just annotate your validator with @FacesValidator. The annotation registers your validator automatically. No xml needed.