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.
Комментарии
Отправить комментарий