本篇內容主要講解“springboot2.4跨域問題怎么解決”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“springboot2.4跨域問題怎么解決”吧!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供六盤水網站建設、六盤水做網站、六盤水網站設計、六盤水網站制作等企業(yè)網站建設、網頁設計與制作、六盤水企業(yè)網站模板建站服務,10年六盤水做網站經驗,不只是建網站,更提供有價值的思路和整體網絡服務。
配置方式
@Bean public CorsFilter corsFilter() { CorsConfiguration corsConfiguration = new CorsConfiguration(); //1,允許任何來源 corsConfiguration.setAllowedOriginPatterns(Collections.singletonList("*")); //2,允許任何請求頭 corsConfiguration.addAllowedHeader(CorsConfiguration.ALL); //3,允許任何方法 corsConfiguration.addAllowedMethod(CorsConfiguration.ALL); //4,允許憑證 corsConfiguration.setAllowCredentials(true); UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); source.registerCorsConfiguration("/**", corsConfiguration); return new CorsFilter(source); }
到此,相信大家對“springboot2.4跨域問題怎么解決”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!