中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

怎么搭建前后端跨域傳遞cookie環(huán)境

這篇文章主要介紹“怎么搭建前后端跨域傳遞cookie環(huán)境”,在日常操作中,相信很多人在怎么搭建前后端跨域傳遞cookie環(huán)境問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”怎么搭建前后端跨域傳遞cookie環(huán)境”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站設(shè)計(jì)制作、網(wǎng)站制作與策劃設(shè)計(jì),任丘網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)10年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:任丘等地區(qū)。任丘做網(wǎng)站價(jià)格咨詢:18980820575

后端

新建maven項(xiàng)目

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.6.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>test-cors</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>test-cors</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

應(yīng)用啟動(dòng)類

package com.example.testcors;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TestCorsApplication {

    public static void main(String[] args) {
        SpringApplication.run(TestCorsApplication.class, args);
    }

}

控制器

package com.example.testcors;

import org.springframework.web.bind.annotation.CookieValue;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("hello1")
public class CorsController {
    @GetMapping("hello2")
    public String testController(
            @CookieValue(name = "testcookie") String testCookie
    ) {
        return testCookie;
    }
}

配置類

package com.example.testcors;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class WebMvcConfiguration implements WebMvcConfigurer {

    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowCredentials(true)
                .allowedMethods("*")
                .allowedOrigins("*")
                .allowedHeaders("*");
    }
}

另建項(xiàng)目

前端

html文件

將jquery文件放入同目錄下

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8"/>
    <title>Page Index</title>
</head>
<body>
<h3>前臺(tái)系統(tǒng)</h3>
<p id="info"></p>
</body>
<script src="jquery-3.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
    // $.cookie('testcookie','test-value');
    // console.log( $.cookie('testcookie'));
    $.ajax({
        url: 'http://test.testcors.com:8080/hello1/hello2',
        type: "GET",
        crossDomain: true,
        xhrFields: {
            withCredentials: true
        },
        success: function (data) {
            $("#info").html("跨域訪問成功:" + data);
        },
        error: function (data) {
            $("#info").html("跨域失敗!!");
        },

    })
</script>
</html>

本地hosts配置

添加一行

127.0.0.1  test.testcors.com

瀏覽器使用cookie相關(guān)插件添加cookie

域名為.testcors.com

名為  testcookie

值為任意值

到此,關(guān)于“怎么搭建前后端跨域傳遞cookie環(huán)境”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

本文名稱:怎么搭建前后端跨域傳遞cookie環(huán)境
分享地址:http://www.rwnh.cn/article36/jipepg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營銷、標(biāo)簽優(yōu)化移動(dòng)網(wǎng)站建設(shè)、手機(jī)網(wǎng)站建設(shè)企業(yè)建站、動(dòng)態(tài)網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)頁設(shè)計(jì)公司
梅河口市| 阿坝县| 栾川县| 盐源县| 漳浦县| 宜君县| 高邮市| 若尔盖县| 德江县| 伊春市| 墨竹工卡县| 宁陕县| 梅河口市| 胶州市| 兴安县| 巨鹿县| 海宁市| 蛟河市| 库尔勒市| 随州市| 自治县| 哈巴河县| 弋阳县| 抚宁县| 申扎县| 湘乡市| 无棣县| 驻马店市| 罗源县| 大厂| 桐柏县| 江门市| 明水县| 辉县市| 寿阳县| 金华市| 鲁甸县| 盘锦市| 南乐县| 金秀| 太原市|