JSP token防止表單重複提交

來源:互聯網
上載者:User

原理:

servlet頁面代碼:

1.每次請求時產生一個token(一般為時間戳記),存於session中並隨之用hidden提交,在servlet中判斷接收到的token和session中的是否一致來判斷是否重複提交,如果不是則重新產生一個   token存於session中覆蓋原來的token。

2.當使用者返回或者重新整理重複請求servlet時,servlet判斷token是否一致,由於請求方沒有產生新的token,所以和servlet新產生的token不一致,認為重複提交。

3.當使用者在請求頁面重新整理也就是重新在請求頁面產生token,這時新的token覆蓋servlet產生的token,這時token一致,認為是一個新的請求。

JSP頁面代碼

<body>    <%           long token=System.currentTimeMillis();    //產生時間戳記的token            session.setAttribute("token",token);                 %>    <form  action="isRepeat" method="post">        <input type="text"  name="username"/>        <input type="text"  name="password"/>        <input type="hidden" value="<%=token %>" name="token"/>   <!-- 作為hidden提交 -->        <input type="submit" value="提交"/>    </form></body>

介面代碼:

protected void doPost(HttpServletRequest req, HttpServletResponse resp)            throws ServletException, IOException {         req.setCharacterEncoding("utf-8");         resp.setCharacterEncoding("utf-8");         resp.setContentType("text/html,charset=utf-8");         String username=req.getParameter("username");         String password=req.getParameter("password");         long token=Long.parseLong(req.getParameter("token"));         long tokenInSession=Long.parseLong(req.getSession().getAttribute("token")+"");         if(token==tokenInSession){            resp.getWriter().println("ok ");                        //如果是第一次請求,則產生新的token                        req.getSession().setAttribute("token", System.currentTimeMillis());                     }         else         {                        resp.getWriter().println("do not repeat submit");         }    }


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.