0
点赞
收藏
分享

微信扫一扫

SpringBoot使用CORS实现跨域

飞进科技 2022-04-05 阅读 70
spring boot

前篇:https://blog.csdn.net/wwyywwsaber/article/details/123977789

CORS实现 

package com.gis.config;

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

@Configuration
public class CorsConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")	// 允许跨域访问的路径
                //.allowedOrigins("*")  //SpringBoot2.4.0版本之前
                .allowedOriginPatterns("*")	// 允许跨域访问的源

                .allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")	// 允许请求方法
                .maxAge(168000)	// 预检间隔时间
                .allowedHeaders("*")  // 允许头部设置
                .allowCredentials(true);	// 是否发送cookie
    }
}

其中需要注意allowedOrigins和allowedOriginPatterns

举报

相关推荐

0 条评论