Servlet is the abbreviation of Java Servlet, called a small service program or service connector. Its main function is to browse and generate data interactively and generate dynamic Web content. JSP's full name is Java Server Pages, and its Chinese name is java server page. It is basically a simplified Servlet design and a dynamic web page technology standard.
Description | |
After translation, it corresponds to the JspWriter object, which is internally associated with a PringWriter object | |
After translation, it corresponds to HttpServletRespons/ServletResponse object | |
After translation, it corresponds to ServletConfig object | |
After translation, it corresponds to the ServletContext object | |
After translation, it corresponds to the HttpSession object | |
After translation, it corresponds to the PageContext object, which provides the encapsulation of JSP page resources and can set the page range attributes | |
The translated corresponding Throwable object represents the exception object thrown by other JSP pages and will only appear on the JSP error page (the JSP page where isErrorPage is set to true) | |
After translation, it corresponds to this |
The above is the detailed content of How do jsp built-in objects correspond to servlets?. For more information, please follow other related articles on the PHP Chinese website!