nested exception is java.lang.NoClassDefFoundError: Could not initialize class org.hibernate.validator.internal.engine.ConfigurationImpl

前端 未结 4 1101
醉酒成梦
醉酒成梦 2021-01-16 09:55
 public ModelAndView Details(@ModelAttribute(\"\") @Validated App app, BindingResult result, @RequestParam(value=\"paramSessionAttr\", required=false) String session         


        
4条回答
  •  日久生厌
    2021-01-16 10:04

    I guess some library is missing because I download library à la carte

    you download from here as a package instead of you download à la carte

    setup GUIDELINE http://hibernate.org/validator/documentation/getting-started/

    Import and include library below in your project

    • classmate-1.1.0.jar
    • javax.el-2.2.4.jar
    • javax.el-api-2.2.4.jar
    • jboss-logging-3.2.1.Final.jar
    • validation-api-1.1.0.Final.jar
    • hibernate-validator-5.2.2.Final.jar
    • hibernate-validator-annotation-processor-5.2.2.Final.jar
    • hibernate-validator-cdi-5.2.2.Final.jar

    Then your code should be working.

提交回复
热议问题