springboot拦截静态资源
时间: 2023-09-13 07:12:05 浏览: 101
springboot拦截器
Spring Boot 会默认拦截/static、/public、/resources和/META-INF/resources 目录下的静态资源,如果需要自定义静态资源的路径,则需要在application.properties文件中添加以下配置:spring.mvc.static-path-pattern=/customPath/**,其中/customPath/为自定义的路径。
阅读全文