springboot项目浏览器加载Resource interpreted as Stylesheet but transferred with MIME type text/html 报错

近期在整理springboot有关知识点。

在写项目的时候遇到了Resource interpreted as Stylesheet but transferred with MIME type text/html的报错

把解决该问题的思路写下来。

项目运行时打开浏览器窗口访问login页面

springboot项目浏览器加载Resource interpreted as Stylesheet but transferred with MIME type text/html 报错_第1张图片

发现页面的样式没有显示,并且报了个不知名的错误。

一开始思考是不是资源路径位置写错,导致样式加载出错,但经过修改路径位置发现并没有解决。

然后我就把引入的资源文件全都注释了,发现问题还是存在

通过以上判断应该不是前台项目模板出现问题,然后我就开始思考会不会在后端出了问题

 springboot项目浏览器加载Resource interpreted as Stylesheet but transferred with MIME type text/html 报错_第2张图片

项目中我添加了个判断用户是否登录的拦截器。我通过在addinterceptors方法 excludePathPatterns中排除了项目的资源路径,

接下来重启项目,奇迹发生了。。。。。。。

 

你可能感兴趣的:(springboot)