@SessionAttribute类似,你可以使用 @RequestAttribute注解来访问先前创建的请求属性(例如,由 Servlet Filter 或 HandlerInterceptor):

    1. @GetMapping("/")
    2. // 也就是 HttpServletRequest.setAttribute() 中存储后,可以使用该注解取出来
    3. public String handle(@RequestAttribute Client client) {
    4. // ...
    5. }