如何实现<mvc:annotation-driven> </mvc:annotation-driven>

时间:2014-02-23 12:50:26

标签: spring-mvc bean-validation spring-annotations

我遇到<mvc:annotation-driven />的问题。我想用于JSR-303注释。

检查此图片。 http://s7.postimg.org/cz7itmiuj/Beze_jm_na.png

1 个答案:

答案 0 :(得分:1)

尝试添加xmlns:mvc="http://www.springframework.org/schema/mvc属性,并在开场http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd元素的xsi:schemaLocation内添加beans

类似的东西:

<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:p="http://www.springframework.org/schema/p"
   xmlns:context="http://www.springframework.org/schema/context"
   xmlns:mvc="http://www.springframework.org/schema/mvc"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

显然,请保留当前配置中您正在使用的其他命名空间,但不在上面的示例中,例如xmlns:jee,如果您需要它。