Examples of using The servlet in English and their translations into Vietnamese
{-}
-
Colloquial
-
Ecclesiastic
-
Computer
A JSP directive affects the overall structure of the servlet class.
The servlet container is responsible for servlets' creation,
A part of the web server called the servlet engine loads the Servlet class and executes it.
The servlet calls service() method to process a client's request.
Somebody has to call the servlet's doPost() or doGet() method.
method is called, the servlet object is marked for garbage collection.
JSP actions use constructs in XML syntax to control the behavior of the servlet engine.
Different versions of Apache Tomcat are available for different versions of the Servlet and JSP specifications.
method is called, the servlet object is marked for garbage collection.
It is called when the servlet is first created,
Specifies the time, in seconds, between client requests before the servlet container will invalidate this session.
HttpServlet, an abstract class that implements the Servlet interface and is specially designed to handle HTTP requests.
Struts, Wicket uses the servlet API under the hood.
The servlet container uses HttpSession interface to create a session between an HTTP client
At the completion of the init() method the servlet is in ready state to service requests from clients.
The servlet container uses this interface to create a session between an HTTP client and an HTTP server.
Struts, Wicket uses the servlet API under the hood.
loads some data that will be used throughout the life of the servlet.