解决GET http://localhost:8080/js/layui/layui.js net::ERR_ABORTED 404
用ssm+layui在写页面的时候,发现无法找到资源路径
<script src="js/layui/layui.js" charset="utf-8"></script>
保证路径是正确
<script src="${pageContext.request.contextPath}/js/layui/layui.js" charset="utf-8"></script>
备注在html中是无法识别的${},jsp才可以,所以html你可以看一下路径然后写死。
clean项目
这是一个maven项目
添加静态资源映射
在spring-mvc中添加静态资源映射
<!--静态资源映射-->
<mvc:resources mapping="/js/**" location="/WEB-INF/js/"/>
<script src="/WEB-INF/js/layui/layui.js" charset="utf-8"></script>
直接上面这样写是不可以的
重启Tomcat
参考链接
解决:GET http://localhost:8080/static/js/jquery.min.js net::ERR_ABORTED 404