接口緩存-MaxAge

 

@SuppressWarnings("rawtypes")
	@GetMapping("/info")
	public Result getInfo(String shopId, HttpServletResponse response) {
		if(StringUtils.isBlank(shopId)){
			return Result.failure("參數不能爲空");
		}
		response.setHeader("Cache-Control", "max-age=120");
		return Result.success(shopAnalysisFacade.getInfo(shopId));
	}
相關文章
相關標籤/搜索