加载js失败的解决方法

加载静态资源(css/js等)遇到的错误

Failed to load resource: the server responded with a status of 404 ()php

GET http://localhost:8080/static/js/jquery-3.3.1.min.js net::ERR_ABORTED 404css

解决方案

1 解决方法(isELIgnored="false"

出现问题的片断为:html

<script src="${pageContext.request.contextPath }/static/js/jquery-3.3.1.min.js"></script>java

加入isELIgnored="false"jquery

<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>web

而后重启服务器看看会不会还报这个错spring

2 解决方法(检查springmvc.xml配置/是否存在静态资源拦截)

若使用SSM框架,请检查:spring-mvc

3 解决方法(IDEA out目录是否存对应静态资源)

对于使用了IDEA的朋友,请检查是否out目录是否存在对应的js、css等静态文件。服务器

image-20191220120743402.png

若没有,请打开Project Structure,添加静态文件所在目录到Artifacts -> Output Layout中的<output root>下。mvc

我目前的添加的static文件夹,所以我要添加static到<output root>

作法以下:

image-20191220121209778.png

image-20191220121251672.png

image-20191220121350128.png

image-20191220121422965.png

重启TOMCAT便可。

相关文章
相关标签/搜索