欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SpringBoot解决跨域问题

程序员文章站 2022-07-10 12:11:58
...

跨域问题前端后端都能解决,下面是后端解决代码
SpringBoot解决跨域问题

/**
 * @author Mr.Zhao
 * @version 1.0
 * @Description:
 * @date 2020/2/3 19:04
 */
@Configuration
public class CrosConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOrigins("*")
                .allowCredentials(true)
                .allowedMethods("GET", "POST", "DELETE", "PUT")
                .maxAge(3600);
    }
}

愿你心如花木,向阳而生