這篇“springboot themaleaf第一次進(jìn)頁(yè)面不加載css如何解決”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“springboot themaleaf第一次進(jìn)頁(yè)面不加載css如何解決”文章吧。
十多年專注成都網(wǎng)站制作,成都企業(yè)網(wǎng)站建設(shè),個(gè)人網(wǎng)站制作服務(wù),為大家分享網(wǎng)站制作知識(shí)、方案,網(wǎng)站設(shè)計(jì)流程、步驟,成功服務(wù)上千家企業(yè)。為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì)及定制高端網(wǎng)站建設(shè)服務(wù),專注于成都企業(yè)網(wǎng)站建設(shè),高端網(wǎng)頁(yè)制作,對(duì)玻璃鋼雕塑等多個(gè)方面,擁有豐富建站經(jīng)驗(yàn)。
近期在做springboot +themaleaf項(xiàng)目中遇到首頁(yè)css樣式不加載情況,后來(lái)發(fā)現(xiàn)是注冊(cè)攔截器時(shí)沒(méi)有加入css樣式,下邊是最開(kāi)始代碼
public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor( new LoginHandleInterceptor()).addPathPatterns("/**") .excludePathPatterns("/index.html", // 排除掉首頁(yè)請(qǐng)求 "/", // 排除掉首頁(yè)請(qǐng)求 ) ; //registry.addInterceptor(new HandlerInterceptor()). }
第一次訪問(wèn)登錄頁(yè)面的時(shí)候,對(duì)應(yīng)的js css唄攔截器攔截,就沒(méi)有加載,只需要把對(duì)應(yīng)的css,jquery等放入到攔截器中就可以了
public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor( new LoginHandleInterceptor()).addPathPatterns("/**") .excludePathPatterns("/index.html", // 排除掉首頁(yè)請(qǐng)求 "/", // 排除掉首頁(yè)請(qǐng)求 "/user/login", "/asserts/css/*.css", "/asserts/img/*.svg", "/asserts/js/*.js", "/webjars/bootstrap/4.1.1/css/*.css", "/mancenter/*", "/error", "/asserts/lib/jquery/*","/asserts/lib/*.js") ; //registry.addInterceptor(new HandlerInterceptor()). }
1.訪問(wèn)themaleaf頁(yè)面報(bào)錯(cuò)
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.Mon Jun 24 11:08:43 CST 2019
There was an unexpected error (type=Not Found, status=404).
No message available
錯(cuò)誤1:
調(diào)試時(shí)加入了WebMvcConfig類
package com.feilong.Reptile.config; import org.springframework.stereotype.Component; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * 配置靜態(tài)資源映射 * * @author sunziwen * @version 1.0 * @date 2018-11-16 14:57 **/ @Component public class WebMvcConfig implements WebMvcConfigurer { /** * 添加靜態(tài)資源文件,外部可以直接訪問(wèn)地址 * * @param registry */ @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/"); } }
刪除這個(gè)類后還是報(bào)錯(cuò),猜測(cè)可能是包路徑問(wèn)題,重新建立個(gè)新項(xiàng)目,將舊項(xiàng)目轉(zhuǎn)移后,沒(méi)有再報(bào)錯(cuò)。
以上就是關(guān)于“springboot themaleaf第一次進(jìn)頁(yè)面不加載css如何解決”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。