springboot获取cookie
时间: 2023-04-22 07:05:37 浏览: 174
获取cookie
5星 · 资源好评率100%
Spring Boot可以通过HttpServletRequest对象获取Cookie。可以使用以下代码:
```
@GetMapping("/getCookie")
public String getCookie(HttpServletRequest request) {
Cookie[] cookies = request.getCookies();
if (cookies != null) {
for (Cookie cookie : cookies) {
if (cookie.getName().equals("cookieName")) {
return cookie.getValue();
}
}
}
return "Cookie not found";
}
```
在上面的代码中,我们首先获取HttpServletRequest对象,然后使用它的getCookies()方法获取所有的Cookie。如果找到了名为“cookieName”的Cookie,我们就返回它的值。如果没有找到,我们返回“Cookie not found”。
阅读全文