SSM框架下 Failed to load resource: the server responded with a status of 404 (Not Found)错误
转载声明:
本文为摘录自“博客园”,版权归原作者所有。
温馨提示:
为了更好的体验,请点击原文链接进行浏览
摘录时间:
2020-03-21 14:28:26
这个错误提示的是js的引用路径有错:
1.检查应用路径是否正确(我的问题是路径是正确的但是去到页面就会提示404错误)
引用路径,最好都使用绝对路径
<script type="text/javascript" src="<%=basePath%>/js/jquery-1.12.4.js"></script>
2.在SSM框架下面查看配置文件
<mvc:resources location="/js/" mapping="/js/**"></mvc:resources>
这里检查静态文件的引用目录,如果这里设置的目录不是你在项目中实际的文件位置那么就会报 Failed to load resource: the server responded with a status of 404 (Not Found)这个错误。