当前位置:   article > 正文

URL 重写_url重写

url重写

URL重写,也属于会话追踪技术的一种.

URL重写解决了这样一个问题:
    当前浏览器把cookie禁用之后,浏览器在发请求的时候,就不会把cookie带到服务器端了(其中最重要的也包括JSESSIONID),因为禁用cookie之后浏览器拒绝一切站点向浏览器写入cookie的(注意再禁用之前是否已经有一些已经存在的cookie了),这样的话,多个请求就不能在服务器端拿到同一个session对象了(因为发送请求的时候没有把JSESSIONID的值传给服务器)。

    把JSESSIONID从客户端传给服务器,有俩种方式:
    1.JSESSIONID保存在cookie文件中,浏览器发送请求的时候把这个cookie文件中的数据带给服务器(cookie).

    2.通过传参的方式,把JSESSIONID的值通过要访问的URL传给服务器.(URL重写)

    
    如何实现URL重写:
    String url = resp.encodeURL("..");
    这个方法参数就是我们要访问的URL,这个方法会把重写后的URL以字符串的形式返回.

    例如:在一个超链接中,本来要访问的URL是:<a href="GetDataFromSession">
    
    重写后:
    <a href="GetDataFromSession;jsessionid=5480EF9016295A73DC56731A2F123246">
   

  1. package com.briup.web.Servelt;
  2. import java.io.IOException;
  3. import javax.servlet.ServletException;
  4. import javax.servlet.annotation.WebServlet;
  5. import javax.servlet.http.HttpServlet;
  6. import javax.servlet.http.HttpServletRequest;
  7. import javax.servlet.http.HttpServletResponse;
  8. import javax.servlet.http.HttpSession;
  9. @WebServlet("/ck")
  10. //http://127.0.0.1:8888/jd1812_web/ck
  11. public class URLCookie extends HttpServlet {
  12. private static final long serialVersionUID = 1L;
  13. protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  14. // TODO Auto-generated method stub
  15. HttpSession session=
  16. request.getSession();
  17. //当浏览器禁用Cookie时,每次访问都要手动添加jesessionid
  18. // System.out.println("sess"+session.getId());
  19. // //String path="sess;jsessionid="+session.getId();
  20. //encodeURL自动在资源名称后面拼接jsessionid值
  21. //在encodeURL前面需要获取session对象
  22. String path=response.encodeURL("sess");
  23. System.out.println(path);
  24. request.setAttribute("id", session.getId());
  25. // response.sendRedirect(path);
  26. request.getRequestDispatcher("/test.jsp").forward(request, response);
  27. }
  28. /**
  29. * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
  30. */
  31. protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  32. // TODO Auto-generated method stub
  33. doGet(request, response);
  34. }
  35. }
  36. //test.jsp
  37. <%@ page language="java" contentType="text/html; charset=UTF-8"
  38. pageEncoding="UTF-8"%>
  39. <%
  40. String path = request.getContextPath();
  41. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  42. %>
  43. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  44. <html>
  45. <base href="<%=basePath %>">
  46. <head>
  47. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  48. <title></title>
  49. </head>
  50. <body>
  51. <a href="sess;jsessionid=${requestScope.id}">点击</a>
  52. <!-- El表达式可以获取后台4个容器的内容 -->
  53. request:${requestScope.num}<br>
  54. session:${sessionScope.num}<br>
  55. application:${applicationScope.num}
  56. </body>
  57. </html>

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/84627
推荐阅读
相关标签
  

闽ICP备14008679号