溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SpringBoot WebFlux中header參數(shù)的示例分析

發(fā)布時(shí)間:2021-12-16 17:22:15 來源:億速云 閱讀:419 作者:小新 欄目:大數(shù)據(jù)

這篇文章主要介紹SpringBoot WebFlux中header參數(shù)的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

I. 項(xiàng)目環(huán)境

本項(xiàng)目借助SpringBoot 2.2.1.RELEASE + maven 3.5.3 + IDEA進(jìn)行開發(fā)

1. 依賴

使用 WebFlux,最主要的引入依賴如下(省略掉了 SpringBoot 的相關(guān)依賴,如對于如何創(chuàng)建 SpringBoot 項(xiàng)目不太清楚的小伙伴,可以關(guān)注一下我之前的博文)

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-webflux</artifactId>
    </dependency>
</dependencies>

II. 請求頭參數(shù)解析

在實(shí)際的業(yè)務(wù)開發(fā)中,有幾個(gè)請求頭出現(xiàn)的頻率特別高,如常用于反爬的User-Agent,鑒定強(qiáng)求來源的referer,跨域相關(guān)的Access-Control-Allow-,cookie、session 自定義的請求頭等

1. 請求頭限制

RequestMappingGetMapping中指定請求頭參數(shù)時(shí),表示只有請求中包含這個(gè)請求頭才會(huì)匹配過去

/**
 * 只有請求頭包含 myheader 且值為 myvalue的才可以訪問到
 *
 * - 正常訪問: curl 'http://127.0.0.1:8080/header/filter/yihhui' -H 'myheader: myvalue'
 * - 異常訪問: curl 'http://127.0.0.1:8080/header/filter/yihhui' -H 'myheader: myvalue2'  因?yàn)檎埱箢^不匹配,404
 *
 * @param name
 * @return
 */
@GetMapping(path = "/filter/{name}", headers = "myheader=myvalue")
public Mono<String> headerFilter(@PathVariable(name = "name") String name) {
    return Mono.just("request filter: " + name);
}

實(shí)例如下:

?  ~ curl 'http://127.0.0.1:8080/header/filter/yihhui' -H 'myheader: myvalue'
request filter: yihhui%

?  ~ curl 'http://127.0.0.1:8080/header/filter/yihhui' -H 'myheader: myvalue2'
{"timestamp":"2020-09-07T00:40:34.493+0000","path":"/header/filter/yihhui","status":404,"error":"Not Found","message":null,"requestId":"aa47f5a5"}%

2. 請求頭參數(shù)解析

WebFlux 依然是可以通過注解@RequestHeader來獲取對應(yīng)的請求頭

從使用姿勢上來看,webflux 與 webmvc 并沒有什么區(qū)別

/**
 * 獲取請求頭
 *
 * curl 'http://127.0.0.1:8080/header/get' -H 'myheader: myvalue' -H 'user-agent: xxxxxxx'
 *
 * @param header  注意,這個(gè)是自定義的請求頭
 * @param userAgent
 * @return
 */
@GetMapping(path = "get")
public Mono<String> getHeader(@RequestHeader("myheader") String header,
        @RequestHeader("user-agent") String userAgent) {
    return Mono.just("request headers: myheader=" + header + " userAgent=" + userAgent);
}

測試 case 如下

?  ~ curl 'http://127.0.0.1:8080/header/get' -H 'myheader: myvalue' -H 'user-agent: xxxxxxx'
request headers: myheader=myvalue userAgent=xxxxxxx%

3. cookie 獲取

利用 cookie 來標(biāo)識用戶身份可以說是非常普遍的場景了,我們通過專用的CookieValue來獲取指定的 cookies 值

/**
 * 獲取cookie
 *
 * curl 'http://127.0.0.1:8080/header/cookie' --cookie 'tid=12343123;tt=abc123def'
 *
 * @param tid
 * @return
 */
@GetMapping(path = "cookie")
public Mono<String> getCookie(@CookieValue("tid") String tid) {
    return Mono.just("request cookies tid=" + tid);
}

上面的 case 中,標(biāo)識只需要獲取 tid 這個(gè) cookies 值,其他的不 care

?  ~ curl 'http://127.0.0.1:8080/header/cookie' --cookie 'tid=12343123;tt=abc123def'
request cookies tid=12343123%

以上是“SpringBoot WebFlux中header參數(shù)的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI