springbootthemaleaf第一次进页面不加载css的问题

2022-11-13 18:11:04 加载 页面 springbootthemaleaf

springboot themaleaf 第一次进页面不加载css

近期在做springboot +themaleaf项目中遇到首页css样式不加载情况,后来发现是注册拦截器时没有加入css样式,下边是最开始代码

 public void addInterceptors(InterceptorReGIStry registry) {
        registry.addInterceptor( new LoginHandleInterceptor()).addPathPatterns("
@Component
public class WEBmvcConfig implements WebMvcConfigurer {
    
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
    }
}

删除这个类后还是报错,猜测可能是包路径问题,重新建立个新项目,将旧项目转移后,没有再报错。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。

相关文章