這篇文章主要講解了“如何使用SpringCROS解決項(xiàng)目中的跨域問題”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“如何使用SpringCROS解決項(xiàng)目中的跨域問題”吧!
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),鎮(zhèn)海企業(yè)網(wǎng)站建設(shè),鎮(zhèn)海品牌網(wǎng)站建設(shè),網(wǎng)站定制,鎮(zhèn)海網(wǎng)站建設(shè)報(bào)價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,鎮(zhèn)海網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
CROS(Cross-Origin Resource Sharing) 用于解決瀏覽器中跨域請求的問題。簡單的Get請求可以使用JSONP來解決,而對于其它復(fù)雜的請求則需要后端應(yīng)用的支持CROS。Spring在4.2版本之后提供了@CrossOrigin 注解來實(shí)現(xiàn)對Cross的支持。
在Controller方法上配置
@CrossOrigin(origins = {"http://loaclhost:8088"})@RequestMapping(value = "/crossTest",method = RequestMethod.GET)public String greeting() { return "corss test";}
在Controller上配置,那么這個Controller中的所有方法都會支持CORS
import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.CrossOrigin;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;@CrossOrigin(origins = "http://localhost:8088",maxAge = 3600)@Controller@RequestMapping("/api")public class AppController { @RequestMapping(value = "/crossTest",method = RequestMethod.GET) public String greeting() { return "corss test"; }}
Java Config全局配置
import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.CorsRegistry;import org.springframework.web.servlet.config.annotation.EnableWebMvc;import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;@Configuration@EnableWebMvcpublic class SpringWebConfig extends WebMvcConfigurerAdapter { /** * {@inheritDoc} * <p>This implementation is empty. * * @param registry */ @Override public void addCorsMappings(CorsRegistry registry) { super.addCorsMappings(registry); // 對所有的URL配置 registry.addMapping("/**"); // 針對某些URL配置 registry.addMapping("/api/**").allowedOrigins("http:///localhost:8088") .allowedMethods("PUT","DELETE") .allowedHeaders("header1","header2","header3") .exposedHeaders("header1","header2") .allowCredentials(false).maxAge(3600); }}
XML全局配置
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> <mvc:cors> <!--<mvc:mapping path=""/>--> <mvc:mapping path="/api/**" allowed-origins="http://localhost:8088,http://localhost:8888" allowed-methods="GET,PUT" allowed-headers="header1,header2" exposed-headers="header1,header2" allow-credentials="false" max-age="3600" /> </mvc:cors></beans>
感謝各位的閱讀,以上就是“如何使用SpringCROS解決項(xiàng)目中的跨域問題”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對如何使用SpringCROS解決項(xiàng)目中的跨域問題這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
網(wǎng)站標(biāo)題:如何使用SpringCROS解決項(xiàng)目中的跨域問題
網(wǎng)頁URL:http://jinyejixie.com/article28/jjigjp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊、營銷型網(wǎng)站建設(shè)、建站公司、關(guān)鍵詞優(yōu)化、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)