Both are interfaces from javax.servlet.http package. They are derived from ServletRequest and ServletResponse interfaces. Both objects are created and implicitly passed to the service() method of Servlet by container. The job of HttpServletRequest is to receive data sent by Web client, like user name and password. Also comes with many getXXX() methods to retrieve other […]
↧