标签:
No mapping found for HTTP request with URI [/SpringMVC/user.do] in DispatcherServlet with name ‘springDispatcherServlet‘
如果排除了主要配置问题,还可能的原因是未加入<mvc:annotation-driven/>
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/plain;charset=UTF-8</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
标签:
原文地址:http://www.cnblogs.com/shuo1208/p/5551018.html