public ModelAndView Details(@ModelAttribute(\"\") @Validated App app, BindingResult result, @RequestParam(value=\"paramSessionAttr\", required=false) String session
Maybe lib conflict happens.
With my case:
jboss.common:jboss-common:jar:1.2.1.GA
org.jboss.logging:jboss-logging:jar:3.3.0.Final
exist together, but they have same package "org.jboss.logging".
Just exclusion one in pom.xml
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
Then your code should be working.
I used sts to generate the spring project. I was getting the above error. After spending 2 days, I figured adjusting the version fix the problem.
In the parent section of pom.xml, I replaced 1.5.4 with 1.2.5
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.5.RELEASE</version>
</parent>
I was facing the same issue while working with JSR 303 bean validation I have added below two jar(along with validation-api-1.1.0.final.jar and hibernate-validator-5.0.1.final.jar) and the issue got resolved
1.classmate-0.8.0.jar 2.jboss-logging-3.1.0.ga.jar