码迷,mamicode.com
首页 > 编程语言 > 详细

spring-mvc.xml报错cvc-complex-type.2.4.c

时间:2016-01-12 23:03:26      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:

添加
       <!-- 定义请求处理映射HandlerMapping -->
       <bean id = "handlerMapping"
             class = "org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
            <!--指定请求和controller对应的关系 -->
            <property name = "mappings" ref = "urlMappings"/>
       </bean>
    <!-- 定义请求映射表 map -->
    <util:properties id="urlMappings">
        <prop key="/hello.form">helloController</prop>
    </util:properties>

时报错:

cvc-complex-type.2.4.c:The matching wildcard is strict,but no declaration can be found for element ‘util:properties‘

在上面添加
xmlns:util="http://www.springframework.org/schema/util"
以及
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd

spring-mvc.xml报错cvc-complex-type.2.4.c

标签:

原文地址:http://www.cnblogs.com/rixiang/p/5125720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!