(springmvc)页面找不到静态资源文件Failed to load resource: the server responded with a status of 404 (Not Found)

 

今天打算整理之前写的一个插件功能上传到github,新建一个java项目,项目使用的是spring mvc框架,然后再调试页面的时候发现找不到静态资源文件,如下图所示:

(springmvc)页面找不到静态资源文件Failed to load resource: the server responded with a status of 404 (Not Found)_第1张图片

 

于是我第一时间检查jsp上页面资源的路径:


	
	

经过确认,发现路径是没有错的:

(springmvc)页面找不到静态资源文件Failed to load resource: the server responded with a status of 404 (Not Found)_第2张图片

 

朋友们可以参考我的文件路径的写法,如果确实是路径写错,那么可以把路径改过来就能解决问题了。

然后接着说我的问题,很显然,我这个不属于路径的问题,那么是什么原因导致页面找不到静态文件的呢?我最后看到了控制台输出了如下信息:

(springmvc)页面找不到静态资源文件Failed to load resource: the server responded with a status of 404 (Not Found)_第3张图片

解读一下,即:在请求分发时,没有找到"/ScreenshotForUpload/css/amazeui.min.css"的映射(No mapping found for ...),于是我发现了问题所在。原来是spring mvc拦截了页面对静态资源的请求,但你的controller中又没有这个路径的映射,所以页面对静态资源文件的请求并没有正确下发,那么该怎么解决这个问题呢?下面我给出参考的方法:

解决方案:

1.采用。 在spring mvc的xml配置文件上加上一句:。如下图所示:

(springmvc)页面找不到静态资源文件Failed to load resource: the server responded with a status of 404 (Not Found)_第4张图片

加入之后,spring mvc就会对进入DispatcherServlet的URL进行筛查,如果发现是静态资源的请求,就将该请求转由Web应用服务器默认的Servlet处理,如果不是静态资源的请求,才由DispatcherServlet继续处理。这个方法是最快捷的。

2.采用。可以使用,并将静态资源放在WEB-INF目录下(或者其他你喜欢的地方),然后在springMVC-servlet中添加如下配置:

根据实际情况填写路径。

3.在web.xml文件中将spring mvc的拦截路径改为/springmvc/*("springmvc"可以替换成你喜欢的路径),如下图所示

(springmvc)页面找不到静态资源文件Failed to load resource: the server responded with a status of 404 (Not Found)_第5张图片这样就可以将"对spring mvc的请求"和"对静态资源文件的请求"区分开了,不过有个缺点是,你的所有mvc请求都必须以"/springmvc"开头了。

由spring mvc引起的静态资源文件找不到的问题,可以说是比较隐秘的,新手可能被一时半会找不到问题的根源,希望本文可以给你提供帮助!


 

你可能感兴趣的:((springmvc)页面找不到静态资源文件Failed to load resource: the server responded with a status of 404 (Not Found))