@CookieValue

掌握程度:了解
@CookieValue:映射一个cookie值,用法同@RequestParam

@RequestMapping("/testCookieValue")
public String testCookieValue(@CookieValue("JSESSIONID") String sessionID){
    System.out.println("testCookieValue" +sessionID);
    return SUCCESS;
}

猜你喜欢

转载自blog.csdn.net/code_fighter/article/details/79182774
今日推荐