码迷,mamicode.com
首页 > 编程语言 > 详细

java架构师

时间:2020-02-11 19:00:46      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:测试的   nbsp   framework   on()   lse   ann   contex   添加   bsp   

1、使用spring-boot设置跨域

package com.zb.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;

@Configuration
public class CorsConfig {
    public CorsConfig() {

    }

    @Bean
    public CorsFilter corsFilter() {
        // 1、添加cors配置信息
        CorsConfiguration config = new CorsConfiguration();

        // http://localhost:8080 为前端发起接口的地址
        config.addAllowedOrigin("http://localhost:8080");

        // 设置是否发送cookie信息
        config.setAllowCredentials(true);

        config.addAllowedMethod("*");

        config.addAllowedHeader("*");

        // 2、为url添加映射路径
        UrlBasedCorsConfigurationSource corsSource = new UrlBasedCorsConfigurationSource();
        corsSource.registerCorsConfiguration("/**", config);

        // 3、返回重新设定好的corsSource
        return new CorsFilter(corsSource);
    }
}

备注:

1、axios.defaults.withCredentials = true; 跨域的时候会带上cookies
2、config.setAllowCredentials(true); 发送cokies
但是我在测试的时候发现:axios没有设置withCredentials,也会出现cokkie;
config.setAllowCredentials(true)如果为false,会出现跨域情况

 

java架构师

标签:测试的   nbsp   framework   on()   lse   ann   contex   添加   bsp   

原文地址:https://www.cnblogs.com/zhaobao1830/p/12296042.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!