美文网首页
Springboot配置静态资源文件访问和跨域配置

Springboot配置静态资源文件访问和跨域配置

作者: 私人云笔记_骁勇波波 | 来源:发表于2023-06-27 10:32 被阅读0次

@Configuration

@Slf4j

public class WebConfig implements WebMvcConfigurer {

    private static String staticFilePath;

    @Value("${file-path.static}")

    public void setStaticFilePath(String filePath) {

        staticFilePath = filePath;

    }

    @Override

    public void addResourceHandlers(ResourceHandlerRegistry registry) {

        String path = "file:" + staticFilePath;

        registry.addResourceHandler("/static/**")

                .addResourceLocations(path);

    }

// 跨域服务配置

@Override

public void addCorsMappings(CorsRegistry registry) {

//添加映射路径

registry.addMapping("/**")

//设置放行哪些原始域

.allowedOriginPatterns("*")

//是否发送Cookie

.allowCredentials(true)

//放行哪些请求方式

.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")

//放行哪些原始请求头部信息

.allowedHeaders("*")

//暴露哪些原始请求头部信息

.exposedHeaders("*")

.maxAge(3600);

}

}

相关文章

网友评论

      本文标题:Springboot配置静态资源文件访问和跨域配置

      本文链接:https://www.haomeiwen.com/subject/ubxnydtx.html