Is it possible to use bean level validation provided by JSF 2.0 in JSF 1.2 .
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JSF 2.0 has no such thing as bean level validation. Probably you’re confusing with JSR303 Bean Validation (the
javax.validationAPI). JSR303 is part of Java EE 6. So if you run a Java EE 6 capable container (Glassfish 3, JBoss AS 6, etc), then you’ll be able to use JSR303, regardless of JSF version. Otherwise you’ve got to install a JSR303 implementation separately, like Hibernate Validator.