Hi *,

I use Annotation "@BeanValidation(useGroups = SkipValidation.class)" on my action method to ignore the validation constraints, if it getting called from JSF-facelet.

I've noticed, that this annotation works good for "standalone" constraints, such as @NotNull or @Size, but not for @Column. In my case, I have a Hibernate-Entity with a name-property, annotated like this:

@Column(name="NAME", length=80, nullable=false)
private String name;

This property is getting always validated (length and not-null check), regardless of "@BeanValidation(useGroups = SkipValidation.class)"-annotation on corresponding action method.

What is a reason for this behavior? Did I misunderstand something?

(I use MyFaces 2.1.13, MyFaces extval 2.0.7, hibernate-validator 5.0.1.Final)

Thanks for any help,

Alexey

Reply via email to