国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服務器之家 - 編程語言 - JAVA教程 - JAVA防止重復提交Web表單的方法

JAVA防止重復提交Web表單的方法

2020-01-10 16:22煙大洋仔 JAVA教程

這篇文章主要介紹了JAVA防止重復提交Web表單的方法,涉及Java針對表單的相關處理技巧,具有一定參考借鑒價值,需要的朋友可以參考下

本文實例講述了JAVA防止重復提交Web表單的方法。分享給大家供大家參考,具體如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package cn.com.form;
import java.io.IOException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Random;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import sun.misc.BASE64Encoder;
//產生表單
public class FormServlet extends HttpServlet {
  private static final long serialVersionUID = 1L;
  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    //產生隨機數
    TokenProcessor tp=TokenProcessor.getInstance();
    String token=tp.generateToken();
    request.getSession().setAttribute("token", token);
    request.getRequestDispatcher("/form.jsp").forward(request, response);
  }
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doGet(request,response);
  }
}
class TokenProcessor//令牌
{
  /*
   * 1.把構造函數私有
   * 2.自己創建一個
   * 3.對外暴露一個方法,允許獲取上面創建的對象
   * */
  private static final TokenProcessor instance=new TokenProcessor();
  private TokenProcessor(){}
  public static TokenProcessor getInstance()
  {
    return instance;
  }
  public String generateToken()
  {
    String token=System.currentTimeMillis()+new Random().nextInt()+"";
    try {
      MessageDigest md=MessageDigest.getInstance("md5");
      byte[] md5=md.digest(token.getBytes());
      //base64編碼
      BASE64Encoder encoder=new BASE64Encoder();
      return encoder.encode(md5);
    } catch (NoSuchAlgorithmException e) {
      // TODO Auto-generated catch block
      throw new RuntimeException(e);
    }
  }
}
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
 <base href="<%=basePath%>">
 <title>My JSP 'form.jsp' starting page</title>
  <meta http-equiv="pragma" content="no-cache">
  <meta http-equiv="cache-control" content="no-cache">
  <meta http-equiv="expires" content="0">
  <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  <meta http-equiv="description" content="This is my page">
  <!--
  <link rel="stylesheet" type="text/css" href="styles.css">
  -->
 </head>
 <body>
   <form action="/Session/DoForm" method="post">
     <input type="hidden" name="token" value="${token}">
     用戶名:<input type="text" name="userName">
     <input type="submit" value="提交">
   </form>
 </body>
</html>
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package cn.com.form;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
 * Servlet implementation class DoForm
 * 處理表單提交的請求
 *
 */
public class DoForm extends HttpServlet {
  private static final long serialVersionUID = 1L;
  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    /*String userName=request.getParameter("userName");
    try {
      Thread.sleep(1000*3);
    } catch (InterruptedException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    System.out.println("向數據庫提交注冊用戶...");
    */
    boolean b=isTokenValid(request);
    if(!b)
    {
      System.out.println("請不要重復提交!");
      return;
    }
    request.getSession().removeAttribute("token");
    System.out.println("向數據庫中注冊用戶==");
  }
  private boolean isTokenValid(HttpServletRequest request) {
    String client_token=request.getParameter("token");
    if(client_token==null)
    {
      return false;
    }
    String server_token=(String)request.getSession().getAttribute("token");
    if(server_token==null)
    {
      return false;
    }
    if(!client_token.equals(server_token))
    {
      return false;
    }
    return true;
  }
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doGet(request,response);
  }
}

希望本文所述對大家Java web程序設計有所幫助。

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 这里只有久久精品 | 香蕉视频禁止18 | 七七婷婷婷婷精品国产 | 久久视频免费看 | 国产高清视频在线观看 | 一区二区三区在线 | 婷婷国产精品 | 二区在线观看 | 一二三精品区 | 日本精品久久 | 精品福利一区二区三区 | 精品久久中文字幕 | 91成人小视频 | 国产成人在线电影 | 亚洲免费久久久 | 亚洲精品偷拍自拍 | 亚洲美女网站 | 可以在线观看的av网站 | 丝袜天堂 | www久久精品 | 日韩中文字幕一区 | 久久精品无码一区二区日韩av | 日韩美女视频 | 天天爽天天干 | 99在线热视频 | 国产精品自拍视频网站 | 亚洲成人一区 | 午夜精品在线 | 亚洲欧美日韩一区 | 五月婷婷香蕉 | 在线国产一区二区 | 成人日日夜夜 | 国产精品视频播放 | 久久免费电影 | 91久久极品 | 国产成人免费 | 99在线观看 | 天天插天天操 | 日韩五码 | 中文字幕av一区二区三区 | 久久狠狠 |