以前在 Servlet 中獲取某個指定的 Cookie 的值使用 來獲得所有 Cookie 的值,然後再遍歷。 在 SpringMVC 中可以直接使用 註解來獲得指定的 Cookie 的值。 @CookieValue 中的參數有三個,其中一個 value 用來指定 Cookie 中的參數名,其他參數 ...
以前在 Servlet 中獲取某個指定的 Cookie 的值使用 Cookie[] cookies = request.getCookies();
來獲得所有 Cookie 的值,然後再遍歷。
在 SpringMVC 中可以直接使用 @CookieValue
註解來獲得指定的 Cookie 的值。
@Controller
public class handleCookies {
@GetMapping("/getCookie")
public String getCookieValue(@CookieValue("JSESSIONID") String jId) {
System.out.println(jId);
return "success";
}
}
@CookieValue 中的參數有三個,其中一個 value 用來指定 Cookie 中的參數名,其他參數用法和 @RequestParam 完全一樣,請參考 @RequestParam 的章節:使用 @RequestParam 將請求參數綁定至方法參數