SpringBoot项目取消静态文件访问限制
时间:2021-06-02 19:47:35
收藏:0
阅读:0
spring:
#thymeleaf
thymeleaf:
cache: false
prefix: classpath:/templates/
check-template-location: true
suffix: .html
encoding: utf-8
mode: HTML
#这个是关键,放开springboot对静态资源的拦截
mvc:
static-path-pattern: /static/**
评论(0)