我遇到<mvc:annotation-driven />
的问题。我想用于JSR-303注释。
答案 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
,如果您需要它。