javaee6下测试hibernate时注意

  问题:

   新建web项目时若使用javaee6的情况下其下面的javax.persistence.jar包将对获得factory进行校验,即不能得到sessionFactory。报错:org.hibernate.HibernateException: Unable to get the default Bean Validation Factory

  解决方案:

   在hibernate的配置文件中加入<property name="javax.persistence.validation.mode">none</property>,即跳过javaee6的校验。即可







你可能感兴趣的:(hibernate测试报错)