@CookieValue绑定请求中的cookie值

@CookieValue:可让处理方法入参绑定某个Cookie值

@RequestMapping("/testCookieValue")
public String cv(@CookieValue(value="sessonId" required=false) String sessonId ){
    return "success";
}

你可能感兴趣的:(@CookieValue绑定请求中的cookie值)