码迷,mamicode.com
首页 > 其他好文 > 详细

前后端分离解决CORS跨域问题

时间:2020-09-17 19:05:01      阅读:35      评论:0      收藏:0      [点我收藏+]

标签:list()   web   后端   源码   请求方法   lte   override   code   开启   

一、单个Spring Boot应用使用CorsConfig配置类,实现WebMvcConfigurer解决跨域问题

技术图片
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
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("*")
                // 是否允许的请求头信息 
                .allowedHeaders(CorsConfiguration.ALL)
                // 是否允许的方法
                .allowedMethods(CorsConfiguration.ALL)
                // 是否允许证书(Cookies),不再默认开启
                .allowCredentials(true)
                // 跨域允许时间
                .maxAge(3600);
    }

}
View Code

二、多模块化Spring Cloud应用使用Gateway网关,配置CorsWebFilter Bean解决跨域问题

技术图片
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.reactive.CorsWebFilter;
import org.springframework.web.cors.reactive.UrlBasedCorsConfigurationSource;
import org.springframework.web.util.pattern.PathPatternParser;

@Configuration
public class CorsProperties {

    /**
     * 配置跨域
     * @return
     */
    @Bean
    public CorsWebFilter corsFilter() {
        CorsConfiguration config = new CorsConfiguration();

        config.setAllowCredentials(Boolean.TRUE);
        config.addAllowedOrigin("*");
        config.addAllowedHeader("*");
        config.addAllowedMethod("*");
        config.setMaxAge(3600L);

        UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(new PathPatternParser());
        source.registerCorsConfiguration("/**", config);

        return new CorsWebFilter(source);
    }


}
View Code

三、在Controller添加上@CrossOrigin跨域注解,此注解只针对当前控制层类或者单个请求方法有效,注解源码中的定义的属性和上述两个差不多

技术图片
import com.server.entity.Test;
import com.server.service.TestService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RestController
// or here
public class TestController {

    @Autowired
    private TestService testService;

    @CrossOrigin // is here
    @GetMapping("/test")
    public List<Test> test() {
        return testService.list();
    }

}
View Code

前后端分离解决CORS跨域问题

标签:list()   web   后端   源码   请求方法   lte   override   code   开启   

原文地址:https://www.cnblogs.com/wessonshin/p/13635981.html

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