概述
Cookie 的 path 属性可以有效的过滤哪些 Cookie 可以发送给服务器。哪些不发。
path 属性是通过请求的地址来进行有效的过滤。
CookieA path=/工程路径
CookieB path=/工程路径/abc
请求地址如下: http://ip:port/工程路径/a.html
CookieA 发送
CookieB 不发送
http://ip:port/工程路径/abc/a.html
CookieA 发送
CookieB 发送
servlet程序:
protected void testPath(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
Cookie cookie = new Cookie("path1", "path1");
// getContextPath() ===>>>> 得到工程路径
// System.out.println(req.getContextPath());/12_Cookie
cookie.setPath(req.getContextPath() + "/abc");// ===>>>> /工程路径/abc
resp.addCookie(cookie);
resp.getWriter().write("创建了一个带有Path路径的Cookie");
}
cookie.html页面:
<li><a href="cookieServlet?action=testPath"
target="target">Cookie的路径设置</a></li>
结果:
并不会出现path1
出现path1
最后
以上就是畅快水壶为你收集整理的Cookie 有效路径 Path 的设置的全部内容,希望文章能够帮你解决Cookie 有效路径 Path 的设置所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复