简体   繁体   中英

Problem using @Valid with Spring MVC application deployed to Tomcat

I am building a Spring MVC application and deploying to Tomcat. When I try to use the @Valid syntax, I get a compilation error:

Valid cannot be resolved to a type.

I am using Eclipse Java EE IDE for Web Developers (Helios SR2).

I have hibernate-validator.jar in my classpath, as the Spring documentation indicates, but I don't see javax.validation.* anywhere in my references.

Any help would be appreciated.

add

<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean" />

to your context and you have to have javax.validation.* classes on classpath search for javax.validation in maven repositories or use following if you use Maven:

  <dependency>
    <groupId>javax.validation</groupId>
    <artifactId>com.springsource.javax.validation</artifactId>
    <version>1.0.0.GA</version>
  </dependency>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM