Servlet 1. To use the servlet first to introduce the Servlet.jar in the application
2. Then, in the. java file
Import Javax.servlet.http.HttpServletRequest;
Import Javax.servlet.http.HttpServletResponse;
Import Javax.servlet.http.HttpServlet;
Import javax.servlet.ServletException;
Import java.io.IOException;
Import Java.io.PrintWriter; This import is visible in the specific case
3. Introduce several common methods in the servlet
A) protected void service (Httpserlvetrequest req,httpservletresponse res) throws servletexception,ioexception{}
If it is overwrite, doxxx method may not be invoked.
b) protected void doget (Httpserlvetrequest req,httpservletresponse res) throws servletexception,ioexception{}
Features 1:safe and idempotent. 2:only ASCII (text) data can is sent to server and get method. 3:easy to bookmarks.
Main function: Get the data, do not change the data
c) protected void DoPost (Httpserlvetrequest req,httpservletresponse res) throws servletexception,ioexception{}
Features 1:not safe and idempotent. 2disallow bookmarks.
Main role: Transmission form data, large quantities of data, commonly used in BBS and other data storage can change the place
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.