解决thymeleaf引入靜態js,css失效

thymeleaf引入靜態js,css失效

  1. 配置properties文件
#thymeleaf訪問根路徑
spring.thymeleaf.prefix=classpath:/templates/
#後綴名
spring.thymeleaf.suffix=.html
#模板格式
spring.thymeleaf.mode=HTML5
#字符格式
spring.thymeleaf.encoding=UTF-8
#在呈现模板之前检查模板是否存在,默認true
spring.thymeleaf.check-template = true 
#检查模版位置是否存在,默认为 true
spring.thymeleaf.check-template-location=true
#是否开启缓存,开发时可以设置为 false,默认为 true
spring.thymeleaf.cache=false
#Content-Type配置
spring.thymeleaf.servlet.content-type=text/html; charset=utf-8
#启用MVC Thymeleaf视图分辨率。
spring.thymeleaf.enabled=true

#spring.mvc.static-path-pattern=/static/**
#靜態文件加載路徑
spring.resources.static-locations = classpath:/templates/,classpath:/resources/,classpath:/static/,classpath:/templates/**
#熱部署
spring.devtools.restart.enabled=true
  1. 可以重寫WebMvcConfigurationSupport ,配置攔截登錄及靜態文件加載路勁
@SpringBootConfiguration
public class LoginSupport extends WebMvcConfigurationSupport {

	@Autowired
	private LoginInterceptor loginInterceptor;

	@Override
	protected void addInterceptors(InterceptorRegistry registry) {
		registry.addInterceptor(loginInterceptor).addPathPatterns("/**")
		.excludePathPatterns("/login","/verifyCode","/doLogin","/welcome");//該路徑值得是@RequestMapping綁定路徑
	}

	/**
     * 解决resources下面静态资源无法访问
     * @param registry
     */
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/**")
                .addResourceLocations("classpath:/static/");
        super.addResourceHandlers(registry);
    }

}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值