Servlet introductory tutorial, Java Servlet technology succinctly

Server Applet Servlet is short, translated as "server-side applets." Java Servlet is a set of technical standards governing the use of Java to develop dynamic websites. In other words, Java can be used to develop a website background, but to define a set of specifications in advance, and to prepare the foundation class library, which is Servlet doing things.

Java Servlet can use all the Java API, Java can do, Servlet can do.

This introductory tutorial on the overall framework Servlet Servlet technology were explained, and comes with demo examples, this tutorial requires Java foundation.

 

 

  1. What Java Servlet that? What are its characteristics?

  2. Interfaces and classes associated with the Servlet

  3. First Servlet Program

  4. Servlet life cycle Detailed

  5. Servlet configure the virtual path mappings

  6. And ServletConfig ServletContext interface Detailed methods of use thereof (with examples)

  7. servlet handles user requests complete process

  8. Detailed HttpServletRequest: acquisition HTTP request message

  9. Java servlet acquisition form sheet data (parameters)

  10. RequestDispatcher forwards the request to achieve

  11. Detailed HttpServletResponse: a package HTTP response message

  12. response.sendRedirect () redirection (page jump)

  13. Solution Java Servlet the request / response of Chinese garbage problem

  14. What Java Servlet Filter (filter) that? Its methods are there?

  15. The first program Filter

  16. Java Servlet Filter of two mapping ways

  17. The FilterChain (filter chain) Detailed

  18. Detailed methods of use thereof FilterConfig Interface

  19. Servlet Filter to achieve full Unicode station, solve Chinese garbage problem

  20. What is Servlet event listeners?

  21. Servlet HttpSessionListener listener statistics Website Online

 

Guess you like

Origin www.cnblogs.com/linjingtu/p/12547259.html