GET http://localhost:8080/js/jquery-3.2.1.min.js net::ERR_ABORTED 404 (Not Found)

GET http://localhost:8080/js/jquery-3.2.1.min.js net::ERR_ABORTED 404 (Not Found)

这是在jsp写的路径

<script type="text/javascript" src="../js/jquery-3.2.1.min.js" />

这是前台报错
在这里插入图片描述
可以使用 ${pageContext.request.contextPath}

这样就可以了
<script src="${pageContext.request.contextPath}/js/jquery-3.2.1.min.js" > </script>

链接: link.

图片: 在这里插入图片描述

你可能感兴趣的:(GET http://localhost:8080/js/jquery-3.2.1.min.js net::ERR_ABORTED 404 (Not Found))