Esoy developing a project with JavaServerFaces which is structured in a MVC model and I have to implement validation on the client and server side. The question is when applying Bean Validation with annotations in the controller Bean, it is considered server-side validation or because it is a frontend technology or framework, validation should be implemented through validators.
Assuming that the validation with Beans is not considered validation on the server side, what would be the best techniques to make a correct validation.
Your advice would be very useful.
Thank you!