接口缓存-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));
	}

  

posted @ 2019-08-09 11:43  wanhua.wu  阅读(248)  评论(0编辑  收藏  举报