No mapping found for HTTP request with URI [/myMaven/student/findSingleStudent] in DispatcherServlet

来源:互联网 发布:逍遥游翻墙软件 编辑:程序博客网 时间:2024/05/22 15:44

这个问题查了好久,最后才发现原来是配置静态资源时出现的问题,记录下来!

在springmvc.xml中配置静态资源:

<!-- 静态资源配置 -->
<mvc:annotation-driven />
<mvc:resources location="/" mapping="/*.html" />  
<mvc:resources location="/css/" mapping="/css/*" />  
<mvc:resources location="/js/" mapping="/js/*" />  
<mvc:resources location="/images/" mapping="/images/*" />  


注意:标红部分必须配置,不然会报错!

阅读全文
0 0