springboot使用cors解决跨域问题

一:问题背景,前端请求后台api,发生如下跨域错误

二:引入cors依赖

 <dependency>
     <groupId>io.github.openfeign</groupId>
     <artifactId>feign-core</artifactId>
     <version>9.3.1</version>
 </dependency>

三:配置cors

import com.ly.generator.utils.interceptor.CookieRequestInterceptor;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
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 {
    private CorsConfiguration buildConfig() {
        CorsConfiguration corsConfiguration = new CorsConfiguration();
        corsConfiguration.addAllowedOrigin("*");
        corsConfiguration.setAllowCredentials(true);
        corsConfiguration.addAllowedHeader("*");
        corsConfiguration.addAllowedMethod("*");
        return corsConfiguration;
    }

    @Bean
    public CorsFilter corsFilter() {
        UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
        source.registerCorsConfiguration("/**", buildConfig());
        return new CorsFilter(source);
    }

    @Bean
    public CookieRequestInterceptor requestInterceptor(){
        return new CookieRequestInterceptor();
    }
}

  依赖工具类:

import feign.RequestInterceptor;
import feign.RequestTemplate;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;

import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;

/**
 * Created by liyu2 on 2017/10/18.
 */
public class CookieRequestInterceptor implements RequestInterceptor {
    @Override
    public void apply(RequestTemplate requestTemplate) {
        ServletRequestAttributes requestAttributes = (ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
        if(requestAttributes != null){
            HttpServletRequest request = requestAttributes.getRequest();
            Cookie[] cookies = request.getCookies();
            StringBuilder sb = new StringBuilder();
            if(cookies != null){
                for (int i = 0; i < cookies.length; i++) {
                    if (i > 0) {
                        sb.append("; ");
                    }
                    sb.append(cookies[i].getName()).append("=").append(cookies[i].getValue());
                }
                requestTemplate.header("Cookie", new String[] { sb.toString() });
            }
        }
    }
}

猜你喜欢

转载自blog.csdn.net/liyu121/article/details/89414613