首頁 > 軟體

最新springboot解決跨域的幾種方式小結

2022-05-15 22:01:19

什麼是跨域

跨域:指的是瀏覽器不能執⾏其他⽹站的指令碼。它是由瀏覽器的同源策略造成的,是瀏覽器對javascript施加的安全限制。
例如:a頁⾯想獲取b頁⾯資源,如果a、b頁⾯的協定、域名、端⼝、⼦域名不同,所進⾏的存取⾏動都是跨域的,⽽瀏覽器
為了安全問題⼀般都限制了跨域存取,也就是不允許跨域請求資源。注意:跨域限制存取,其實是瀏覽器的限制。理解這⼀點
很重要
同源策略:是指協定,域名,端⼝都要相同,其中有⼀個不同都會產⽣跨域;

springboot解決跨域的幾種方式

方法一、SpringBoot的註解@CrossOrigin

直接在Controller方法或者類上增加@CrossOrigin註解,SpringMVC使用@CrossOrigin使用場景要求 jdk1.8+ Spring4.2+

@GetMapping("/hello")
@CrossOrigin
public String hello() {
        return "hello:" + simpleDateFormat.format(new Date());
}

方式二:使用CorsFilter

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 ConfigConfiguration {
    @Bean
    public CorsFilter CorsFilter() {
        CorsConfiguration corsConfiguration = new CorsConfiguration();
        corsConfiguration.addAllowedOriginPattern("*");
        corsConfiguration.addAllowedHeader("*");
        corsConfiguration.addAllowedMethod("*");
        corsConfiguration.setAllowCredentials(true);
        UrlBasedCorsConfigurationSource ub = new UrlBasedCorsConfigurationSource();
        ub.registerCorsConfiguration("/**", corsConfiguration);
        return new CorsFilter(ub);
    }
}

方式三:自定義過濾(web  filter)的方式

@Component
public class CustomFilter implements Filter {
    @Override
    public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
        HttpServletResponse res = (HttpServletResponse) servletResponse;
        // 設定允許Cookie
        res.addHeader("Access-Control-Allow-Credentials", "true");
        // 允許http://www.xxx.com域(自行設定,這裡只做範例)發起跨域請求
        res.addHeader("Access-Control-Allow-Origin", "*");
        // 設定允許跨域請求的方法
        res.addHeader("Access-Control-Allow-Methods", "GET, POST, DELETE, PUT");
        // 允許跨域請求包含content-type
        res.addHeader("Access-Control-Allow-Headers", "Content-Type,X-CAF-Authorization-Token,sessionToken,X-TOKEN");
        if (((HttpServletRequest) servletRequest).getMethod().equals("OPTIONS")) {
            servletResponse.getWriter().println("ok");
            return;
        }
        filterChain.doFilter(servletRequest, servletResponse);
    }
}

 方式四:實現WebMvcConfigurer中addCorsMappings方法

import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Component
public class MyWebMvcConfigurer implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")  // 匹配所有的路徑
                .allowCredentials(true) // 設定允許憑證
                .allowedHeaders("*")   // 設定請求頭
                .allowedMethods("GET", "POST", "PUT", "DELETE") // 設定允許的方式
                .allowedOriginPatterns("*");
    }
}

 方法五:採用nginx做動態代理

到此這篇關於springboot解決跨域的幾種方式的文章就介紹到這了,更多相關springboot解決跨域內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com