一.服务器端获取Session对象依赖于客户端携带的Cookie中的JSESSIONID数据。如果用户把浏览器的隐私级别调到最高,这时浏览器是不会接受Cookie、这样导致永远在服务器端都拿不到的JSESSIONID信息。这样就导致服务器端的Session使用不了。
Java针对Cookie禁用,给出了解决方案,依然可以保证JSESSIONID的传输。
Java中给出了再所有的路径的后面拼接JSESSIONID信息。
在 Session1Servlet中,使用response.encodeURL(url) 对超链接路径拼接 session的唯一标识
| 代码如下 | 复制代码 |
|
// 当点击 的时候跳转到 session2 response.setContentType("text/html;charset=utf-8"); //此方法会在路径后面自动拼接sessionId String path = response.encodeURL("/day11/session2"); System.out.println(path); //页面输出 response.getWriter().println("ip地址保存成功,想看 请"); | |
二.在response对象中的提供的encodeURL方法它只能对页面上的超链接或者是form表单中的action中的路径进行重写(拼接JSESSIONID)。
如果我们使用的重定向技术,这时必须使用下面方法完成:其实就是在路径后面拼接了 Session的唯一标识 JSESSIONID。
| 代码如下 | 复制代码 |
|
// 重定向到session2 String path = response.encodeRedirectURL("/day11/session2"); System.out.println("重定向编码后的路径:"+ path); response.sendRedirect(path); session2代码,获得session1传过来的ID public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 需求:从session容器中取出ip // 获得session对象 HttpSession session = request.getSession(); // 获取ip地址 String ip = (String) session.getAttribute("ip"); // 将ip打印到浏览器中 response.setContentType("text/html;charset=utf-8"); response.getWriter().println("IP:"+ ip); } session1代码 public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 需求:将ip保存到session中 // 获取session HttpSession session = request.getSession(); // 获得ip String ip = request.getRemoteAddr(); // 将ip保存到session中 session.setAttribute("ip", ip); // 需求2:手动的将 session对应的cookie持久化,关闭浏览器再次访问session中的数据依然存在 // 创建cookie Cookie cookie =newCookie("JSESSIONID", session.getId()); // 设置cookie的最大生存时间 cookie.setMaxAge(60 * 30); // 设置有效路径 cookie.setPath("/"); // 发送cookie response.addCookie(cookie); // 当点击 的时候跳转到 session2 // response.setContentType("text/html;charset=utf-8"); // String path = response.encodeURL("/day11/session2"); // System.out.println(path); // response.getWriter().println("ip地址保存成功,想看 请"); // 重定向到session2 String path = response.encodeRedirectURL("/day11/session2"); System.out.println("重定向编码后的路径:"+ path); response.sendRedirect(path); } | |
原神祈愿模拟器最新版
原神祈愿模拟器手机版是一款完整汉化的趣味原神抽卡模拟小游戏,
宝宝森林美食完整版
宝宝森林美食游戏最新版是一款十分有趣的休闲益智游戏,帮助宝宝
g沙盒仇恨官方英文版(gorebox)
G沙盒仇恨英文原版是一款最近非常火热的沙盒模拟类游戏,在这里
迷你世界测试服最新版2024
迷你世界测试服2021最新版,即迷你世界的先遣服版本,用户能
闪耀暖暖最新版2024
闪耀暖暖手游这是非常好玩的换装手游,游戏内容丰富有趣,游戏环