版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
SpringCloud確保服務只能通過gateway轉(zhuǎn)發(fā)訪問,禁止直接調(diào)用接口訪問前言在微服務體系架構中,網(wǎng)關承擔著重要的角色,在網(wǎng)關中可以添加各種過濾器,過濾請求,保證請求參數(shù)安全,限流等等。如果請求繞過了網(wǎng)關,那就等于繞過了重重關卡,直搗黃龍,所以,在分布式架構中,我們需要有一定的防范,來確保各個服務相互之間安全調(diào)用。正文思路1、在網(wǎng)關中給所有請求加上一個請求密鑰2、在服務添加過濾器,驗證密鑰首先在網(wǎng)關服務(gateway)中添加過濾器,給放行的請求頭上加上判斷package
com.hpsyche.hpsychegatewayserver.filter;
import
com.hpsyche.hpsychegatewayserver.utils.RedisUtil;
import
org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.cloud.gateway.filter.GatewayFilterChain;
import
org.springframework.cloud.gateway.filter.GlobalFilter;
import
org.springframework.http.HttpStatus;
import
org.springframework.http.server.reactive.ServerHttpRequest;
import
org.springframework.util.StringUtils;
import
org.springframework.web.server.ServerWebExchange;
import
reactor.core.publisher.Mono;
/**
*
@author
Hpsyche
*/
public
class
TokenFilter
implements
GlobalFilter
{
@Autowired
private
RedisUtil
redisUtil;
@Override
public
Mono
filter(ServerWebExchange
exchange,
GatewayFilterChain
chain)
{
//token(用戶身份)判斷
................
ServerHttpRequest
req
=
exchange.getRequest().mutate()
.header("from",
"gateway").build();
return
chain.filter(exchange.mutate().request(req.mutate().build()).build());
}
}如果考慮到安全性的話,這里header的值也可以使用UUID,并保存至redis中,在其他服務中通過redis讀取判斷身份。搜索后端架構師公眾號回復“架構整潔”,送你一份驚喜禮包。在主服務,如auth授權服務上,添加全局攔截器,判斷header上是否有對應的value,是則否則,反之攔截。package
erceptor;
import
lombok.extern.slf4j.Slf4j;
import
mons.lang.StringUtils;
import
org.springframework.web.servlet.HandlerInterceptor;
import
javax.servlet.http.HttpServletRequest;
import
javax.servlet.http.HttpServletResponse;
import
java.io.PrintWriter;
/**
*
@author
Hpsyche
*/
@Slf4j
public
class
GlobalInterceptor
implements
HandlerInterceptor
{
@Override
public
boolean
preHandle(HttpServletRequest
request,
HttpServletResponse
response,
Object
obj)
throws
Exception
{
String
secretKey
=
request.getHeader("from");
if(!StringUtils.isNotBlank(secretKey)||secretKey.equals("gateway"){
response.setContentType("application/json;
charset=utf-8");
PrintWriter
writer
=
response.getWriter();
writer.write("error");
return
false;
}
return
true;
}
}此時,繞過網(wǎng)關,直接訪問auth服務的接口會返回error,即必須通過網(wǎng)關,我們的任務看似完成了。問題在項目中,發(fā)現(xiàn)了feign遠程調(diào)用會失敗,因為在fegin中調(diào)用不通過gateway,缺少from的請求頭,會被攔截器攔截,導致調(diào)用失敗。解決方案在auth-client(服務暴露方)添加請求頭,在供其他服務調(diào)用時添加header。package
com.hpsyche.hpsycheauthclient.config;
import
feign.RequestInterceptor;
import
feign.RequestTemplate;
import
org.springframework.context.annotation.Configuration;
/**
*
Feign調(diào)用的時候添加請求頭from
*/
@Configuration
public
class
FeignConfiguration
implements
RequestInterceptor
{
@Override
public
void
apply(RequestTemplate
requestTemplate)
{;
requestTemplate.header("from",
"gateway");
}
}同時,需要在service接口中添加configuration配置:package
com.hpsyche.hpsycheauthclient.api;
import
com.hpsyche.hpsychecommonscommon.vo.BaseResponse;
import
com.hpsyche.hpsycheauthclient.config.FeignConfiguration;
import
org.springframework.cloud.openfeign.FeignClient;
import
org.springframework.web.bind.annotation.PostMapping;
import
org.springframework.web.bind.annotation.RequestParam;
/**
*
@author
Hpsyche
*/
@FeignClient(value
=
"hpsyche-auth-server",configuration
=
FeignConfiguration.class)
public
interface
AuthService
{
@PostMapping("/auth/verifyUser")
BaseResponse
verifyUser(
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 價格策略與定價技巧
- 2025年度家用電梯定制設計與安裝合同范本2篇
- 2025年度25噸汽車吊車租賃與施工現(xiàn)場衛(wèi)生管理合同3篇
- 二零二五年度上市公司股權激勵股權轉(zhuǎn)讓及代持協(xié)議3篇
- 生產(chǎn)車間消防知識培訓
- 二零二五年度停車場保險服務合同6篇
- 二零二五年度打包機租賃與安裝調(diào)試服務合同2篇
- 二零二五年度市場推廣合同標的營銷方案與推廣渠道
- 重慶市2024-2025學年高一上學期期末聯(lián)合檢測語文試卷(含答案)
- 二零二五年度婚慶活動參與者權益保障合同樣本3篇
- 提優(yōu)精練08-2023-2024學年九年級英語上學期完形填空與閱讀理解提優(yōu)精練(原卷版)
- 中央2025年全國人大機關直屬事業(yè)單位招聘18人筆試歷年典型考點(頻考版試卷)附帶答案詳解
- 2024年度美團平臺商家入駐服務框架協(xié)議
- 2024至2030年四氯苯醌項目投資價值分析報告
- DB4511T 0002-2023 瓶裝液化石油氣充裝、配送安全管理規(guī)范
- 《肝衰竭診治指南(2024版)》解讀
- 2025年集體經(jīng)濟發(fā)展計劃
- 房地產(chǎn)銷售主管崗位招聘筆試題及解答(某大型央企)2024年
- 足球D級教練員培訓匯報
- 巖溶區(qū)水文地質(zhì)參數(shù)研究-洞察分析
- 大學體育與健康 教案全套 體育舞蹈 第1-16周
評論
0/150
提交評論