SpringMVC错误小结
Posted 倚天剑雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMVC错误小结相关的知识,希望对你有一定的参考价值。
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>
以上是关于SpringMVC错误小结的主要内容,如果未能解决你的问题,请参考以下文章