http的Cookie(三.path)
Posted itivy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http的Cookie(三.path)相关的知识,希望对你有一定的参考价值。
1.设置host
127.0.0.1 cookie1.ivy.com 127.0.0.1 cookie2.ivy.com 127.0.0.1 ivy.com
2.应用Cookie2的controller.(实际可以直接浏览器查看Cookie)
@RestController public class HelloController { @GetMapping("hello") public String sayHello(HttpServletRequest request) { System.out.println("Cookie:"); Cookie[] cookies = request.getCookies(); if (cookies != null) { Arrays.asList(request.getCookies()).forEach(item -> { System.out.print("key:" + item.getName() + "-" + "value:" + item.getValue() + "-" + "domain:" + item.getDomain() + "-" + "path:" + item.getPath() + "-" + "maxAge:" + item.getMaxAge()); System.out.println(); }); } return "hello"; } }
以上是关于http的Cookie(三.path)的主要内容,如果未能解决你的问题,请参考以下文章