Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to use bean level validation provided by JSF 2.0 in JSF 1.2 .

share|improve this question

3 Answers

up vote 4 down vote accepted

JSF 2.0 has no such thing as bean level validation. Probably you're confusing with JSR303 Bean Validation (the javax.validation API). 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.

share|improve this answer

I don't know if this is what you want, but richfaces has <rich:beanValidator>

share|improve this answer
Cool. Do you know if this can be used with JSR 303 validated beans? The backing implementation is Hibernate validation. – Markos Fragkakis Dec 12 '12 at 8:48
1  
yes, it can.... – Bozho Dec 12 '12 at 15:37
    @Id
private int id;

@NotNull(message = "Company id is required")
private int companyId;

@NotNull(message = "Name is required")
private String name;

@NotNull(message = "Device resolution is required")
@Enumerated()
private DeviceResolution deviceResolution;

@NotNull(message = "Device width is required")
private int deviceWidth;

@NotNull(message = "Device height is required")
private int deviceHeight;
share|improve this answer
As mentioned in my answer, this is JSR303 and unrelated to JSF. You should not confuse bean validation being part of JSF. – BalusC Oct 12 '11 at 12:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.