springboot web + springboot security thymeleaf 报错
引入css时候报404,浏览器控制台报如下错误:
Refused to apply style from 'http://localhost:8000/layui/css/layui.css' because its MIME type ('application/json') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
解决问题思路:
1、检查静态文件的存放路径,确定是不是对应的static目录,有时候会粗心大意,写多一个字母或是写错,导致找不到,就会有这个问题
2、检文件的路径是否正确,我的如下,注意路径是不需要跟上static目录信息
<link rel="stylesheet" type="text/css" data-th-href="@{/layui/css/layui.css}">
3、看看文件名是否有问题,有些同学会写错,比如layuicss等等
总之基本404找不到是应为文件路径或文件名的问题,不存在配置问题,默认springboot就是对thymeleaf模板支持的,开发的时候注意修改一个配置,配置thymeleaf缓存,将其设置为false
spring:
thymeleaf:
cache: false
代码路径:
digierp-cloud
网友评论