ServletResponse vs HttpServletResponse

When the client sends a request to the Web server, the server loads the concerned Servlet and executes the service() method. In the process of execution, the container creates objects of ServletRequest and ServletResponse and passes them to the service() method. This is discussed in First Example – Login Screen Validation. ServletResponse vs HttpServletResponse Observe, …

ServletResponse vs HttpServletResponse Read More »