跨域请求

前后端分离axios请求跨域问题

以前都没有什么问题这次重新做前后端分离时遇到了诡异的bug----allow credentials == true 和 Access-Control-Allow-Origin * 不能同时存在

网上有好多解决办法貌似都不太符合我的问题琢磨出了两种解决方案
跨域问题可以在前端解决也可以在后端解决,个人认为后端解决更方便
新建一个CrosConfig 类用来重写WebMvcConfigurer方法

package com.example.springbootdemo.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Service;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class CrosConfig {
    @Bean
    public WebMvcConfigurer corsConfigurer() {
        return new WebMvcConfigurer() {
            @Override
            public void addCorsMappings(CorsRegistry registry) {
                registry.addMapping( "/**" )
                        .allowedOrigins( "*" )
                        .allowedMethods( "POST", "GET", "PUT", "OPTIONS", "DELETE" )
                        .maxAge( 3600 )
                        .allowCredentials( true);
            }
        };
    }
}

这里可能还会出现错误可以吧allowCredentials( true);改为allowCredentials( false);
或者把.allowedOrigins()改成.allowedOriginPatterns()就可以了 其他不用改 主要是springboot版本太高

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值