一、cookie是由http制定的
二、使用方法
1.原始方法
- 使用request接受Cookies请求头
- 使用response发送set-Cookies响应头
2.常用方法
- response.addCookie();
- request.getCookies()
三、cookies的path
- cookies的path并不是在客户端的的保存路径
- cookies的path有客户端创建cookies时设置
cookie、session入门
原文:https://www.cnblogs.com/su1999/p/14243325.html