JPA 2.0 : what is javax.validation.* package?

前端 未结 1 1659
执笔经年
执笔经年 2020-12-15 22:19

What is the javax.validation package in Java EE? How to use this with JPA?

I want to validate my JPA Entity with the @NotNull annotation. My JPA implementation is H

1条回答
  •  北海茫月
    2020-12-15 22:32

    Using the Bean Validation Api you can quite easy ensure standard validation (not null, patterns, email) on your entities (or beans in common).

    Check out Oracles tutorials for Bean Validation Api: http://docs.oracle.com/javaee/6/tutorial/doc/gircz.html

    Also Hibernate should be no problem with this, as it is the reference implementation: http://www.hibernate.org/subprojects/validator.html

    For a good introduction check Hibernates tutorial on this topic: http://docs.jboss.org/hibernate/validator/4.0.1/reference/en/html_single/

    Some other tutorials (Google for JPA 2 + Bean Validation)

    • http://www.jboss.org/jdf/examples/ticket-monster/tutorial/DataPersistence/
    • http://musingsofaprogrammingaddict.blogspot.de/2010/01/jpa-2-and-bean-validation-in-action.html

    JSR specifications…

    • Bean Validation 1.1:
      • spec
      • JSR 349
    • Bean Validation 1.0
      • JSR 303

    0 讨论(0)
提交回复
热议问题