springboot前端上传图片, 后端需要刷新项目本地文件夹才能访问

添加配置

package com.example.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class WebConfig implements WebMvcConfigurer {
 
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
    	registry.addResourceHandler("/images/**").addResourceLocations("file:E:/javaworkspace/MyProject/src/main/resources/static/images/");
    }
}

开放resources/static/images目录下所有资源的访问

发布了52 篇原创文章 · 获赞 1 · 访问量 1740

猜你喜欢

转载自blog.csdn.net/qq_42039738/article/details/104527058