Java C11. Advanced Servlet
provide request information for HTTP servlets.
The servlet container creates an
HttpServletRequest object and passes it as an
argument to the servlet's service methods
(doGet, doPost, etc).Client request information including :
parameter name and values,
and an input stream
Attributes : custom information about a request. Extends the ServletRequest interface
Returns the value of attribute :
public Object getAttribute(String name)