SpringBoot 中静态资源设置

不建议在配置文件 application.properties 中配置 spring.mvc.static-path-patternspring.resources.static-locations 进行修改。

建议实现 WebMvcConfigurer 接口并重写 addResourceHandlers 方法。

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
    registry
        .addResourceHandler("/upload/**")
        .addResourceLocations("file:/usr/data/upload");
}

猜你喜欢

转载自www.cnblogs.com/StarUDream/p/9045542.html
今日推荐