bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

在SpringBoot中怎么緩存HTTP請求響應體-創新互聯

這篇文章主要介紹“在SpringBoot中怎么緩存HTTP請求響應體”,在日常操作中,相信很多人在在SpringBoot中怎么緩存HTTP請求響應體問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”在SpringBoot中怎么緩存HTTP請求響應體”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

成都創新互聯2013年開創至今,是專業互聯網技術服務公司,擁有項目成都網站制作、網站設計、外貿網站建設網站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元杜集做網站,已為上家服務,為杜集各地企業和個人服務,聯系電話:13518219792

緩存請求響應體的目的

把一個HTTP的請求,響應信息完整的紀錄到日志。是一種常見有效的問題排查,BUG重現的手段。

但是這種東西,有一個特點就是只能讀取/寫入一次,不能重復。下一次讀寫,就是一個空的流,為了實現流的重用,就很有必要,把讀取和寫入的數據緩存起來, 可以在某個地方,再一次的讀取。

實現的思路

  • HttpServletRequestWrapper

  • HttpServletResponseWrapper

上面2個類,熟悉Servlet的都知道,這倆就是RequestResponse的裝飾模式實現。

通過裝飾者設計模式,我們可以在Request讀取請求body的時候,把讀取到的數據復制一份緩存起來,記錄日志時使用。同理,也可以把Response響應的數據,先緩存起來,用于記錄日志,然后再響應給客戶端。

Spring提供的實現

ContentCachingRequestWrapper

// 這里忽略了 HttpServletRequest 的相關方法
public class ContentCachingRequestWrapper extends HttpServletRequestWrapper  {
	// 包裝Servlet,不限制請求體的大小
	public ContentCachingRequestWrapper(HttpServletRequest request)
	// 包裝Servlet,限制請求體的大小
	public ContentCachingRequestWrapper(HttpServletRequest request, int contentCacheLimit)
	// 獲取到緩存的請求體
	public byte[] getContentAsByteArray()
	// 請求體超過限制時會調用這個方法,默認空實現
	protected void handleContentOverflow(int contentCacheLimit) 
}

比較好理解的一個類,建議通過contentCacheLimit限制請求體大小。因為它默認把請求體緩存到內存中,如果客戶端發起惡意請求,構造大體積的請求體可能會消耗干凈服務器的內存

ContentCachingResponseWrapper

// 這里忽略了 HttpServletResponse 的相關方法
public class ContentCachingResponseWrapper {
	// 把緩存中的響應數據,刷出到客戶端
	void copyBodyToResponse()
	// 獲取緩存數據
	byte[] getContentAsByteArray()
	// 獲取緩存數據
	InputStream getContentInputStream()
	// 獲取緩存數據的大小
	int getContentSize()
}

很簡單,通過ContentCachingResponseWrapper 的包裝,任何往客戶端的響應數據,都會被它緩存起來,重復的讀取使用,最終響應給客戶端

請求日志的實現

Controller

及其簡單,把請求體,添加時間戳后回寫給客戶端。

import java.util.HashMap;
import java.util.Map;

import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;


@RestController
@RequestMapping("/demo")
public class DemoController {
	
	@RequestMapping(produces = { "application/json; charset=utf-8" })
	public Object demo (@RequestBody(required = false) String body) {
		Map<String, Object> response = new HashMap<>();
		response.put("reqeustBody", body);
		response.put("timesttamp", System.currentTimeMillis());
		return response;
	}
}

AccessLogFilter

通過AccessLogFilter輸出請求體/響應體,耗時,等等信息到日志。還對當前請求體生成了一個全局request-id,可以作為檢索的條件。

import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.UUID;

import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebFilter;
import javax.servlet.http.HttpFilter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.annotation.Order;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Component;
import org.springframework.web.util.ContentCachingRequestWrapper;
import org.springframework.web.util.ContentCachingResponseWrapper;
import org.springframework.web.util.NestedServletException;

@Component
@WebFilter(filterName = "accessLogFilter", urlPatterns = "/*")
@Order(-9999) 		// 保證最先執行
public class AccessLogFilter extends HttpFilter {
	
	private static final Logger LOGGER = LoggerFactory.getLogger(AccessLogFilter.class);
	
	private static final long serialVersionUID = -7791168563871425753L;
	
	// 消息體過大
	@SuppressWarnings("unused")
	private static class PayloadTooLargeException extends RuntimeException {
		private static final long serialVersionUID = 3273651429076015456L;
		private final int maxBodySize;
		public PayloadTooLargeException(int maxBodySize) {
			super();
			this.maxBodySize = maxBodySize;
		}
	}

	@Override
	protected void doFilter(HttpServletRequest req, HttpServletResponse res, FilterChain chain) throws IOException, ServletException {
		
		ContentCachingRequestWrapper cachingRequestWrapper = new ContentCachingRequestWrapper(req, 30) { // 限制30個字節
			@Override
			protected void handleContentOverflow(int contentCacheLimit) {
				throw new PayloadTooLargeException(contentCacheLimit);
			}
		};
		
		ContentCachingResponseWrapper cachingResponseWrapper = new ContentCachingResponseWrapper(res);
		
		
		long start = System.currentTimeMillis();
		try {
			// 執行請求鏈
			super.doFilter(cachingRequestWrapper, cachingResponseWrapper, chain);
		} catch (NestedServletException e) {
			Throwable cause = e.getCause();
			// 請求體超過限制,以文本形式給客戶端響應異常信息提示
			if (cause instanceof PayloadTooLargeException) {
				cachingResponseWrapper.setStatus(HttpServletResponse.SC_REQUEST_ENTITY_TOO_LARGE);
				cachingResponseWrapper.setContentType(MediaType.TEXT_PLAIN_VALUE);
				cachingResponseWrapper.setCharacterEncoding(StandardCharsets.UTF_8.displayName());
				cachingResponseWrapper.getOutputStream().write("請求體過大".getBytes(StandardCharsets.UTF_8));
			} else {
				throw new RuntimeException(e);
			}
		}
		
		long end = System.currentTimeMillis();
		
		String requestId = UUID.randomUUID().toString();		// 生成的請求ID
		cachingResponseWrapper.setHeader("x-request-id", requestId);
		
		String requestUri = req.getRequestURI();		// 請求的
		String queryParam = req.getQueryString();		// 查詢參數
		String method = req.getMethod();				// 請求方法
		int status = cachingResponseWrapper.getStatus();// 響應狀態碼
		
		// 請求體
		// 轉換為字符串,在限制請求體大小的情況下,因為字節數據不完整,這里可能亂碼,
		String requestBody = new String(cachingRequestWrapper.getContentAsByteArray(), StandardCharsets.UTF_8);	
		// 響應體
		String responseBody = new String(cachingResponseWrapper.getContentAsByteArray(), StandardCharsets.UTF_8);
		
		LOGGER.info("{} {}ms", requestId, end - start);
		LOGGER.info("{} {} {} {}", method, requestUri, queryParam, status);
		LOGGER.info("{}", requestBody);
		LOGGER.info("{}", responseBody);
		
		// 這一步很重要,把緩存的響應內容,輸出到客戶端
		cachingResponseWrapper.copyBodyToResponse();
	}
}

演示

正常請求和日志

在SpringBoot中怎么緩存HTTP請求響應體

com.demo.web.filter.AccessLogFilter      : a53500bc-c003-414a-9add-99655295a34f 1ms
com.demo.web.filter.AccessLogFilter      : POST /demo site=springboot.io&name=springboot%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA 200
com.demo.web.filter.AccessLogFilter      : {"name": "springboot"}
com.demo.web.filter.AccessLogFilter      : {"reqeustBody":"{\"name\": \"springboot\"}","timesttamp":1620395056498}

體積超過限制的請求和日志

在SpringBoot中怎么緩存HTTP請求響應體

com.demo.web.filter.AccessLogFilter      : 99476161-1790-48cc-86b9-0641efadc1b5 1ms
com.demo.web.filter.AccessLogFilter      : POST /demo site=springboot.io&name=springboot%E4%B8%AD%E6%96%87%E7%A4%BE%E5%8C%BA 413
com.demo.web.filter.AccessLogFilter      : {"name": "springboot"}{"name":
com.demo.web.filter.AccessLogFilter      : 請求體過大

因為限制了請求體的大小,這里日志中輸出的請求體日志,就只有限制字節的大小了

到此,關于“在SpringBoot中怎么緩存HTTP請求響應體”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注創新互聯網站,小編會繼續努力為大家帶來更多實用的文章!

文章題目:在SpringBoot中怎么緩存HTTP請求響應體-創新互聯
網址分享:http://vcdvsql.cn/article24/hsece.html

成都網站建設公司_創新互聯,為您提供用戶體驗網站收錄動態網站微信小程序服務器托管微信公眾號

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

搜索引擎優化