关于后端存储文件后访问出现Not-allowed-to-load-local-resource

2次阅读

共计 543 个字符,预计需要花费 2 分钟才能阅读完成。

添加配置类,创建虚拟路径 映射到 文件的路径

/**
 * @author lankeren
 * @ClassName MyWebConfig
 * @Deacription:
 * @create: 2020-06-22 11:04
 */
@Configuration
public class MyWebConfig implements WebMvcConfigurer {

    /**
     * Add handlers to serve static resources such as images, js, and, css
     * files from specific locations under web application root, the classpath,
     * and others.
     *
     * @param registry
     */
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {registry.addResourceHandler("/picFiles/**").addResourceLocations("file:E:/JavaWorkPlace/School/auctiononlinesys/src/main/resources/static/imgs/goods/");
    }
}
正文完
 0