Hi all, I am attempting to use hibernate validator annotations on a simple integer field. I believe I have all necessary files wired into my project correctly though a simple annotations (such as @Range() ) does not seem to fire. A code snippet is below. I am using the eclipse IDE, and it does not throw any syntax errors so I also want to believe my imports are correct also. Can anyone think of a reason why the validator annotations would not fire? Thanks.
@Column(name = "myNumber") @Basic(fetch = FetchType.EAGER) @XmlElement //@DisjointRange @Range(min=1, max=10) private Integer myNumber;
|