JSP learning path (1)

Source: Internet
Author: User

Servlet is a Java server component that is platform independent and 100% pure Java.
Similar to the Common Gateway Interface (CGI) script, servlets supports the request response programming mode. When the client
When sending a request to the server, the server sends the request to the servlet. Then, the servlet constructs a response,
The server sends the response back to the client. However, unlike CGI scripts, servlets and HTTP
The server runs in the same process.
When sending a client request, call the service method and pass a request and response object.
Servlet first checks whether the request is a get operation or a post operation. Then it calls the following
Method: doget or dopost. If the request is get, the doget method is called. If the request is post
Call the dopost method. Both doget and dopost accept requests (httpservletrequest) and responses
(Httpservletresponse ).

Related Article

Contact Us

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.

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.