JSP request implicit object

In this tutorial you will learn about the JSP request implicit object and its application with practical example.

JSP request implicit object

This implicit object is used to get request information like parameter, header information, remote address, server name etc. This is the HttpServletRequest object that is created by web container for each jsp request. When client requests a page then JSP engine creates a new object to represent that request.

Table Of Contents

Example:

Index.jsp

Output :

2

 

Welcome.jsp: On click on Login this page will called.

Output :

3

In this tutorial we have learn about the JSP request implicit object and its application with practical example. I hope you will like this tutorial.