org.springframework.web.servlet.DispatcherServlet noHandlerFound 警告: No mapping found for HTTP reque

来源:互联网 发布:男士滑雪帽 知乎 编辑:程序博客网 时间:2024/05/22 13:04
在使用spring mvc中出现org.springframework.web.servlet.DispatcherServlet noHandlerFound

警告: No mapping found for HTTP request with URI [/myspring/WEB-INF/jsp/hello.jsp] in DispatcherServlet with name 'spring'

信息的时候,是由于web.xml中的<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>应该修改为<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

0 0
原创粉丝点击