添加
<!-- 定義請求處理映射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
