SpringBoot2.x|Thymeleaf页面不能正常载入css、js文件
1、实现实现WebMvcConfig配置类可以解决页面不能加载css,js的问题;
1 package com.bie.config; 2 3 import org.springframework.context.annotation.Configuration; 4 import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; 5 import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; 6 import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; 7 8 /** 9 * 10 */ 11 @Configuration 12 public class SpringMvcWebConfigSupport implements WebMvcConfigurer { 13 14 /**