是爲了保證用戶的信息安全,防止惡意網站竊取數據,若是網頁之間不知足同源要求,將不能:php
同源策略的非絕對性:html
<script></script> <img/> <iframe/> <link/> <video/> <audio/>
等帶有src屬性的標籤能夠從不一樣的域加載和執行資源。其餘插件的同源策略:flash、java applet、silverlight、googlegears等瀏覽器加載的第三方插件也有各自的同源策略,只是這些同源策略不屬於瀏覽器原生的同源策略,若是有漏洞則可能被黑客利用,從而留下XSS攻擊的後患前端
所謂的同源指:域名、網絡協議、端口號相同,三條有一條不一樣就會產生跨域。 例如:你用瀏覽器打開http://baidu.com
,瀏覽器執行JavaScript腳本時發現腳本向http://cloud.baidu.com
域名發請求,這時瀏覽器就會報錯,這就是跨域報錯。java
$.ajax({ url: 'http://192.168.1.114/yii/demos/test.php', //不一樣的域 type: 'GET', // jsonp模式只有GET 是合法的 data: { 'action': 'aaron' }, dataType: 'jsonp', // 數據類型 jsonp: 'backfunc', // 指定回調函數名,與服務器端接收的一致,並回傳回來 })
<script>
標籤來調用服務器提供的 js腳本。jquery 會在window對象中加載一個全局的函數,當 <script>
代碼插入時函數執行,執行完畢後就 <script>
會被移除。同時jquery還對非跨域的請求進行了優化,若是這個請求是在同一個域名下那麼他就會像正常的 Ajax請求同樣工做。)try { HttpClient client = HttpClients.createDefault(); //client對象 HttpGet get = new HttpGet("http://localhost:8080/test"); //建立get請求 CloseableHttpResponse response = httpClient.execute(get); //執行get請求 String mes = EntityUtils.toString(response.getEntity()); //將返回體的信息轉換爲字符串 System.out.println(mes); } catch (ClientProtocolException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }
在SpringBoot2.0 上的跨域 用如下代碼配置 便可完美解決你的先後端跨域請求問題jquery
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; /** * 實現基本的跨域請求 * @author linhongcun * */ @Configuration public class CorsConfig { @Bean public CorsFilter corsFilter() { final UrlBasedCorsConfigurationSource urlBasedCorsConfigurationSource = new UrlBasedCorsConfigurationSource(); final CorsConfiguration corsConfiguration = new CorsConfiguration(); /*是否容許請求帶有驗證信息*/ corsConfiguration.setAllowCredentials(true); /*容許訪問的客戶端域名*/ corsConfiguration.addAllowedOrigin("*"); /*容許服務端訪問的客戶端請求頭*/ corsConfiguration.addAllowedHeader("*"); /*容許訪問的方法名,GET POST等*/ corsConfiguration.addAllowedMethod("*"); urlBasedCorsConfigurationSource.registerCorsConfiguration("/**", corsConfiguration); return new CorsFilter(urlBasedCorsConfigurationSource); } }
服務網關(zuul)又稱路由中心,用來統一訪問全部api接口,維護服務。nginx
Spring Cloud Zuul經過與Spring Cloud Eureka的整合,實現了對服務實例的自動化維護,因此在使用服務路由配置的時候,咱們不須要向傳統路由配置方式那樣去指定具體的服務實例地址,只須要經過Ant模式配置文件參數便可web
http://a.a.com:81/A
中想訪問 http://b.b.com:81/B
那麼進行以下配置便可www.my.com/A
裏面便可訪問 www.my.com/B
server { listen 80; server_name www.my.com; location /A { proxy_pass http://a.a.com:81/A; index index.html index.htm; } location /B { proxy_pass http://b.b.com:81/B; index index.html index.htm; } }
http://b.b.com:80/Api
中想訪問 http://b.b.com:81/Api
那麼進行以下配置便可server { listen 80; server_name b.b.com; location /Api { proxy_pass http://b.b.com:81/Api; index index.html index.htm; } }