1. 程式人生 > >Javaweb當中對Servlet中的doget和dopost方法的簡單使用

Javaweb當中對Servlet中的doget和dopost方法的簡單使用

<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>使用myeclipse進行servlet程式的建立操作 </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">
  </head>
  
  <body>
    <h2>使用myeclipse進行Servlet程式的訪問操作</h2>
    <hr>
    <!--通過超連結進行的請求方式為get方法請求-->
    <a href="servlet/HelloServlet">採用get方式進行Servlet請求操作</a>
    <form action="servlet/HelloServlet" method="post">
    <input type="submit" value="採用post方式進行Servlet請求操作">
    </form>
  </body>
</html>

上述為一個jsp檔案程式碼。

通過href超連結進行請求的訪問時,將會採用get方式將資料資訊傳送到所制定的Servlet物件當中的doGet方法中來進行資料的處理操作

form表噹噹中設定了提交的方法為post方式進行請求的傳送之後,請求資料將會同過制定的Servlet方法當中的dopost方法來進行資料的請求操作

package servlet;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class HelloServlet extends HttpServlet {

	/**
	 * Constructor of the object.
	 */
	public HelloServlet() {
		super();
	}

	/**
	 * Destruction of the servlet. <br>
	 */
	public void destroy() {
		super.destroy(); // Just puts "destroy" string in log
		// Put your code here
	}
	public void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		System.out.println("進行doget方法的重寫操作,用於處理get請求");
		response.setContentType("text/html");
		PrintWriter out = response.getWriter();
		out.println("<HTML>");
		out.println("  <HEAD><TITLE>A Servlet</TITLE></HEAD>");
		out.println("  <BODY>"); 
		out.print("<Strong>HelloServlet</Strong>");
		out.print(this.getClass());
		out.println(", using the GET method");
		out.println("  </BODY>");
		out.println("</HTML>");
		out.flush();
		out.close();
	}

	/**
	 * The doPost method of the servlet. <br>
	 *
	 * This method is called when a form has its tag value method equals to post.
	 * 
	 * @param request the request send by the client to the server
	 * @param response the response send by the server to the client
	 * @throws ServletException if an error occurred
	 * @throws IOException if an error occurred
	 */
	public void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		System.out.println("進行dopost方法的重寫操作,用去處理post請求你當中的資訊");
		response.setContentType("text/html");
		PrintWriter out = response.getWriter();
		out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
		out.println("<HTML>");
		out.println("  <HEAD><TITLE>A Servlet</TITLE></HEAD>");
		out.println("  <BODY>");
		out.print("<Strong>HelloServlet</Strong>");
		out.print(this.getClass());
		out.println(", using the POST method");
		out.println("  </BODY>");
		out.println("</HTML>");
		out.flush();
		out.close();
	}

}
上述為一個Servlet程式程式碼,在該程式碼當中進行了doget和dopost方法的重寫操作。用於處理客戶端所發來的get型別的請求和post型別的請求。

下面則是一個對應的web.xml檔案、該檔案是一個配置檔案,在伺服器啟動執行時將會被載入。

在伺服器執行時,將會將jsp檔案當中的href和action當中的地址引數值拿來與web.xml當中<url-pattern>標籤當中的引數值來進行比對,當二者相同時,將會通過對映servlert-name標籤當中的引數值來找到<servlet-name>標籤當中引數名字相同的對映,然後訪問<servlet-class>標籤當中的引數路徑值,來對指定路徑下的Servlet程式進行訪問操作