AI智能
改变未来

springMVC踩坑记录:页面加载不出jquery,js,css等资源,并报错net::ERR_ABORTED 404

页面加载不出jquery,css,image等资源。并报错:
GET http://localhost:8081/dianping/js/common/jquery-1.8.3.js net::ERR_ABORTED 404

原因

这是由于被DispatcherServlet拦截器拦截,需要设置前端控制器,说明哪些静态资源不过滤

解决方法

在springMVC的配置文件(applicationContext-web.xml)中加上

<!-- 允许对静态资源文件的访问 --><mvc:default-servlet-handler/><mvc:resources mapping=\"/css/**\" location=\"/css/\"></mvc:resources><mvc:resources mapping=\"/images/**\" location=\"/images/\"></mvc:resources><mvc:resources mapping=\"/js/**\" location=\"/js/\"></mvc:resources><!-- 开启SpringMVC的注解支持 --><mvc:annotation-driven enable-matrix-variables=\"true\"></mvc:annotation-driven>

注意:如果springMVC版本不一样,location跟mapping可能需要反过来写,我是mapping写在前面的可以

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » springMVC踩坑记录:页面加载不出jquery,js,css等资源,并报错net::ERR_ABORTED 404