SpringBoot三种获取Request和Response的方法
2021-03-18 09:24
标签:class autowire let rgba 直接 response log 封装 方法 通过静态方法获取,你也可以封装一个静态方法出来 通过参数直接获取,只要在你的方法上加上参数,Springboot就会帮你绑定,你可以直接使用。如果你的方法有其他参数,把这两个加到后面即可。 注入到类,这样就不用每个方法都写了 转自:https://blog.csdn.net/jiulanhao/article/details/83068952 SpringBoot三种获取Request和Response的方法 标签:class autowire let rgba 直接 response log 封装 方法 原文地址:https://www.cnblogs.com/dcrenl/p/13953437.html@GetMapping(value = "")
public String center() {
ServletRequestAttributes servletRequestAttributes = (ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
HttpServletRequest request = servletRequestAttributes.getRequest();
HttpServletResponse response = servletRequestAttributes.getResponse();
//...
}
@GetMapping(value = "")
public String center(HttpServletRequest request,HttpServletResponse response) {
//...
}
@Autowired
private HttpServletRequest request;
@Autowired
private HttpServletResponse response;
@GetMapping(value = "")
public String center() {
//...
}
上一篇:win7 u盘系统安装教程
文章标题:SpringBoot三种获取Request和Response的方法
文章链接:http://soscw.com/index.php/essay/65707.html