主要用于静态资源放的目录不是static(本例中用的是:statics),因为默认的静态资源目录就是static,所以如果放到static目录下,大概率是不需要配置的吧,我的理解如此,若有不同见解,请评论哦!
方法一:使用配置文件(yml)
spring:
mvc:
static-path-pattern: /statics/** #放开springboot对静态资源的拦截(判断路径符合这个规则的,为静态资源)
resources:
static-locations: classpath:/statics/ #静态资源寻找位置
方法二:使用配置类
package com.lt.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
* 配置静态资源url识别和静态资源位置
*/
@Configuration
public class WebConfig implements WebMvcConfigurer {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/statics/**").addResourceLocations("classpath:/statics/");
}
}
若有错,欢迎评论区讨论!!!