Tomcat, Web Server

 Web Server - is a computer program, for accepting, processing and returning(replying) HTTP responses.

For example Web Server accepts request then transmits it to some server programming  language (PHP, Java, C#...) . 



Tomcat is Web Server which contains Servlets. Tomcat runs interminably and accepts requests from client, redirect to servlets and responds to clients.

Redirect and Forward.







resp.sendRedirect("first.jsp");
req.getRequestDispatcher("first.jsp").forward(req, resp);
Two different types of sending request to another page.

Комментарии

Популярные сообщения из этого блога

Lesson1: JDK, JVM, JRE

SE_21_Lesson_11: Inheritance, Polymorphism

SE_21_Lesson_9: Initialization Blocks, Wrapper types, String class