SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
Implicit Objects
Advance Java
(2160707)
Prepared By::
Metaliya Darshit (130110107020)
INTRODUCTION
JSP Implicit Objects are the Java objects that the JSP Container
makes available to developers in each page and developer can
call them directly without being explicitly declared.
JSP Implicit Objects are also called pre-defined variables.
Object Description
Request This is the HttpServletRequest object associated with the request.
response
This is the HttpServletResponse object associated with the response to the
client.
out This is the PrintWriter object used to send output to the client.
session This is the HttpSession object associated with the request.
application This is the ServletContext object associated with application context.
config This is the ServletConfig object associated with the page.
pageContext
This encapsulates use of server-specific features like higher performance
JspWriters.
page
This is simply a synonym for this, and is used to call the methods defined
by the translated servlet class.
Exception
The Exception object allows the exception data to be accessed by
designated JSP.
REQUEST OBJECT
Implicit object of type HttpServletRequest i.e. created for each
jsp request by the web container.
Use:
To get request information such as parameter, header
information, remote address, server name, server port,
content type, character encoding
To set, get and remove attributes from the jsp request
scope.
REQUEST OBJECT
Index.html
<form action="welcome.jsp">
<input type="text" name="uname">
<input type="submit" value="go"><br/>
</form>
Newjsp.jsp
<%
String name=request.getParameter("uname");
out.print("welcome "+name);
%>
RESPONSE OBJECT
Implicit object of type HttpServletResponse. The instance of
HttpServletResponse is created by the web container for each
jsp request.
Defines the interfaces that deal with creating new HTTP
headers. Through this object the JSP programmer can add new
cookies or date stamps, HTTP status codes etc.
Use:
To add or manipulate response such as redirect response
to another resource, send error etc.
Newjsp.jsp
<%
response.sendRedirect("http://www.google.com");
OUT OBJECT
Instance of a javax.servlet.jsp.JspWriter object and is used to
send content in a response.
Use:
For writing any data to the buffer
displaying dynamic data
The java way to display text on the webpage
Newjsp.jsp
<% out.print("Today is:"+java.util.Calendar.getInstance().getTime());
%>
SESSION OBJECT
implicit object of type HttpSession.
Use:
to set, get or remove attribute or to get session
information.
to track client session between client requests
SESSION OBJECT
Index.html
<form action="welcome.jsp">
<input type="text" name="uname">
<input type="submit" value="go"><br/>
</form>
Newjsp.jsp
<%
String name=request.getParameter("uname");
out.print("Welcome "+name);
session.setAttribute("user",name);
%><a href="second.jsp">second jsp page</a>
SESSION OBJECT
second.jsp
<%
String name=(String)session.getAttribute("user");
out.print("Hello "+name);
%>
APPLICATION OBJECT
Implicit object of type ServletContext.
Instance of ServletContext is created only once by the web
container when application or project is deployed on the server.
Use
To get initialization parameter from configuaration file
(web.xml).
To get, set or remove attribute from the application scope.
APPLICATION OBJECT
Newjsp.jsp
<%
out.print("Welcome "+request.getParameter("uname"));
String driver=application.getInitParameter("dname");
out.print("driver name is="+driver);
%>
CONFIG OBJECT
Implicit object of type ServletConfig.
Use:
To get initialization parameter for a particular JSP page
Allows the JSP programmer access to the Servlet or JSP
engine initialization parameters such as the paths or file
locations etc.
CONFIG OBJECT
PAGECONTEXT OBJECT
Implicit object of type PageContext class
Intended as a means to access information about the page
while avoiding most of the implementation details.
Use:
To set, get or remove attribute from one of the following
scopes:
page
request
session
Application
In JSP, page scope is the default scope.
PAGECONTEXT OBJECT
Newjsp.jsp
<%
String name=request.getParameter("uname");
out.print("Welcome "+name);
pageContext.setAttribute("user",name,PageContext.SESSION_SC
OPE); %>
<a href="second.jsp">second jsp page</a>
PAGECONTEXT OBJECT
second.jsp
<%
String name=(String)pageContext.getAttribute("user",PageContext.SES
SION_SCOPE);
out.print("Hello "+name);
%>
PAGE OBJECT
An actual reference to the instance of the page.
It can be thought of as an object that represents the entire JSP
page.
implicit object of type java.lang.Throwable class.
The exception object is a wrapper containing the exception
thrown from the previous page. It is typically used to generate
an appropriate response to the error condition.
EXCEPTION OBJECT
implicit object of type java.lang.Throwable class.
A wrapper containing the exception thrown from the previous
page.
Use:
To generate an appropriate response to the error
condition.
Implicit objects advance Java
Ad

Recommended

Enterprise java unit-1_chapter-3
Enterprise java unit-1_chapter-3
sandeep54552
 
Jsp tag library
Jsp tag library
sandeep54552
 
Enterprise java unit-3_chapter-1-jsp
Enterprise java unit-3_chapter-1-jsp
sandeep54552
 
Servlets
Servlets
Akshay Ballarpure
 
Ajax presentation
Ajax presentation
Bharat_Kumawat
 
Hibernate architecture
Hibernate architecture
Anurag
 
ReactJs presentation
ReactJs presentation
nishasowdri
 
Asp.net state management
Asp.net state management
priya Nithya
 
React state
React state
Ducat
 
Implicit object.pptx
Implicit object.pptx
chakrapani tripathi
 
Java Script ppt
Java Script ppt
Priya Goyal
 
Session bean
Session bean
sandeep54552
 
1 java servlets and jsp
1 java servlets and jsp
Ankit Minocha
 
Jsp ppt
Jsp ppt
Vikas Jagtap
 
SessionTrackServlets.pptx
SessionTrackServlets.pptx
Ranjeet Reddy
 
react redux.pdf
react redux.pdf
Knoldus Inc.
 
Enterprise java unit-1_chapter-2
Enterprise java unit-1_chapter-2
sandeep54552
 
Spring Framework - MVC
Spring Framework - MVC
Dzmitry Naskou
 
Intro to React
Intro to React
Justin Reock
 
ES6 presentation
ES6 presentation
ritika1
 
Java Servlets
Java Servlets
Emprovise
 
ASP.NET State management
ASP.NET State management
Shivanand Arur
 
Hibernate Basic Concepts - Presentation
Hibernate Basic Concepts - Presentation
Khoa Nguyen
 
3. Java Script
3. Java Script
Jalpesh Vasa
 
Hibernate Presentation
Hibernate Presentation
guest11106b
 
Introduction to java beans
Introduction to java beans
Hitesh Parmar
 
Java Hibernate Programming with Architecture Diagram and Example
Java Hibernate Programming with Architecture Diagram and Example
kamal kotecha
 
XML DTD and Schema
XML DTD and Schema
hamsa nandhini
 
Active x
Active x
andrew20827
 
Jsp chapter 1
Jsp chapter 1
kamal kotecha
 

More Related Content

What's hot (20)

React state
React state
Ducat
 
Implicit object.pptx
Implicit object.pptx
chakrapani tripathi
 
Java Script ppt
Java Script ppt
Priya Goyal
 
Session bean
Session bean
sandeep54552
 
1 java servlets and jsp
1 java servlets and jsp
Ankit Minocha
 
Jsp ppt
Jsp ppt
Vikas Jagtap
 
SessionTrackServlets.pptx
SessionTrackServlets.pptx
Ranjeet Reddy
 
react redux.pdf
react redux.pdf
Knoldus Inc.
 
Enterprise java unit-1_chapter-2
Enterprise java unit-1_chapter-2
sandeep54552
 
Spring Framework - MVC
Spring Framework - MVC
Dzmitry Naskou
 
Intro to React
Intro to React
Justin Reock
 
ES6 presentation
ES6 presentation
ritika1
 
Java Servlets
Java Servlets
Emprovise
 
ASP.NET State management
ASP.NET State management
Shivanand Arur
 
Hibernate Basic Concepts - Presentation
Hibernate Basic Concepts - Presentation
Khoa Nguyen
 
3. Java Script
3. Java Script
Jalpesh Vasa
 
Hibernate Presentation
Hibernate Presentation
guest11106b
 
Introduction to java beans
Introduction to java beans
Hitesh Parmar
 
Java Hibernate Programming with Architecture Diagram and Example
Java Hibernate Programming with Architecture Diagram and Example
kamal kotecha
 
XML DTD and Schema
XML DTD and Schema
hamsa nandhini
 
React state
React state
Ducat
 
1 java servlets and jsp
1 java servlets and jsp
Ankit Minocha
 
SessionTrackServlets.pptx
SessionTrackServlets.pptx
Ranjeet Reddy
 
Enterprise java unit-1_chapter-2
Enterprise java unit-1_chapter-2
sandeep54552
 
Spring Framework - MVC
Spring Framework - MVC
Dzmitry Naskou
 
ES6 presentation
ES6 presentation
ritika1
 
Java Servlets
Java Servlets
Emprovise
 
ASP.NET State management
ASP.NET State management
Shivanand Arur
 
Hibernate Basic Concepts - Presentation
Hibernate Basic Concepts - Presentation
Khoa Nguyen
 
Hibernate Presentation
Hibernate Presentation
guest11106b
 
Introduction to java beans
Introduction to java beans
Hitesh Parmar
 
Java Hibernate Programming with Architecture Diagram and Example
Java Hibernate Programming with Architecture Diagram and Example
kamal kotecha
 

Viewers also liked (8)

Active x
Active x
andrew20827
 
Jsp chapter 1
Jsp chapter 1
kamal kotecha
 
Active x control
Active x control
Amandeep Kaur
 
Active server pages
Active server pages
mcatahir947
 
Jsp element
Jsp element
kamal kotecha
 
Introduction ASP
Introduction ASP
FaTin GhaZmi
 
Active Server Page(ASP)
Active Server Page(ASP)
Keshab Nath
 
Client side scripting and server side scripting
Client side scripting and server side scripting
baabtra.com - No. 1 supplier of quality freshers
 
Ad

Similar to Implicit objects advance Java (20)

Jsp session implicit object
Jsp session implicit object
chauhankapil
 
J2EE jsp_03
J2EE jsp_03
Biswabrata Banerjee
 
JSP.pptx programming guide for beginners and experts
JSP.pptx programming guide for beginners and experts
rani marri
 
4. jsp
4. jsp
AnusAhmad
 
Web&java. jsp
Web&java. jsp
Asya Dudnik
 
Web&java. jsp
Web&java. jsp
Asya Dudnik
 
Jsp session 3
Jsp session 3
Anuj Singh Rajput
 
Jsp1
Jsp1
Soham Sengupta
 
JSP - Java Server Page
JSP - Java Server Page
Vipin Yadav
 
Jsp advance part i
Jsp advance part i
sameersaxena90
 
Lap trinh web [Slide jsp]
Lap trinh web [Slide jsp]
Tri Nguyen
 
Introduction to JSP.pptx
Introduction to JSP.pptx
ManishaPatil932723
 
Introduction to JSP
Introduction to JSP
Geethu Mohan
 
JAVA EE DEVELOPMENT (JSP and Servlets)
JAVA EE DEVELOPMENT (JSP and Servlets)
Talha Ocakçı
 
Advance java session 11
Advance java session 11
Smita B Kumar
 
ADP - Chapter 5 Exploring JavaServer Pages Technology
ADP - Chapter 5 Exploring JavaServer Pages Technology
Riza Nurman
 
Atul & shubha goswami jsp
Atul & shubha goswami jsp
Atul Giri
 
J2EE jsp_01
J2EE jsp_01
Biswabrata Banerjee
 
JSP Components and Directives.pdf
JSP Components and Directives.pdf
Arumugam90
 
Request dispacther interface ppt
Request dispacther interface ppt
Taha Malampatti
 
Jsp session implicit object
Jsp session implicit object
chauhankapil
 
JSP.pptx programming guide for beginners and experts
JSP.pptx programming guide for beginners and experts
rani marri
 
JSP - Java Server Page
JSP - Java Server Page
Vipin Yadav
 
Lap trinh web [Slide jsp]
Lap trinh web [Slide jsp]
Tri Nguyen
 
Introduction to JSP
Introduction to JSP
Geethu Mohan
 
JAVA EE DEVELOPMENT (JSP and Servlets)
JAVA EE DEVELOPMENT (JSP and Servlets)
Talha Ocakçı
 
Advance java session 11
Advance java session 11
Smita B Kumar
 
ADP - Chapter 5 Exploring JavaServer Pages Technology
ADP - Chapter 5 Exploring JavaServer Pages Technology
Riza Nurman
 
Atul & shubha goswami jsp
Atul & shubha goswami jsp
Atul Giri
 
JSP Components and Directives.pdf
JSP Components and Directives.pdf
Arumugam90
 
Request dispacther interface ppt
Request dispacther interface ppt
Taha Malampatti
 
Ad

Recently uploaded (20)

輪読会資料_Miipher and Miipher2 .
輪読会資料_Miipher and Miipher2 .
NABLAS株式会社
 
May 2025: Top 10 Read Articles in Data Mining & Knowledge Management Process
May 2025: Top 10 Read Articles in Data Mining & Knowledge Management Process
IJDKP
 
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
AlqualsaDIResearchGr
 
NEW Strengthened Senior High School Gen Math.pptx
NEW Strengthened Senior High School Gen Math.pptx
DaryllWhere
 
FSE_LLM4SE1_A Tool for In-depth Analysis of Code Execution Reasoning of Large...
FSE_LLM4SE1_A Tool for In-depth Analysis of Code Execution Reasoning of Large...
cl144
 
Bitumen Emulsion by Dr Sangita Ex CRRI Delhi
Bitumen Emulsion by Dr Sangita Ex CRRI Delhi
grilcodes
 
Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf
Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf
Shabista Imam
 
Industry 4.o the fourth revolutionWeek-2.pptx
Industry 4.o the fourth revolutionWeek-2.pptx
KNaveenKumarECE
 
Rapid Prototyping for XR: Lecture 6 - AI for Prototyping and Research Directi...
Rapid Prototyping for XR: Lecture 6 - AI for Prototyping and Research Directi...
Mark Billinghurst
 
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
Shabista Imam
 
special_edition_using_visual_foxpro_6.pdf
special_edition_using_visual_foxpro_6.pdf
Shabista Imam
 
Modern multi-proposer consensus implementations
Modern multi-proposer consensus implementations
François Garillot
 
Introduction to sensing and Week-1.pptx
Introduction to sensing and Week-1.pptx
KNaveenKumarECE
 
Introduction to Python Programming Language
Introduction to Python Programming Language
merlinjohnsy
 
Data Structures Module 3 Binary Trees Binary Search Trees Tree Traversals AVL...
Data Structures Module 3 Binary Trees Binary Search Trees Tree Traversals AVL...
resming1
 
How to Un-Obsolete Your Legacy Keypad Design
How to Un-Obsolete Your Legacy Keypad Design
Epec Engineered Technologies
 
Kel.3_A_Review_on_Internet_of_Things_for_Defense_v3.pptx
Kel.3_A_Review_on_Internet_of_Things_for_Defense_v3.pptx
Endang Saefullah
 
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
ssuser307730
 
System design handwritten notes guidance
System design handwritten notes guidance
Shabista Imam
 
Structured Programming with C++ :: Kjell Backman
Structured Programming with C++ :: Kjell Backman
Shabista Imam
 
輪読会資料_Miipher and Miipher2 .
輪読会資料_Miipher and Miipher2 .
NABLAS株式会社
 
May 2025: Top 10 Read Articles in Data Mining & Knowledge Management Process
May 2025: Top 10 Read Articles in Data Mining & Knowledge Management Process
IJDKP
 
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
AlqualsaDIResearchGr
 
NEW Strengthened Senior High School Gen Math.pptx
NEW Strengthened Senior High School Gen Math.pptx
DaryllWhere
 
FSE_LLM4SE1_A Tool for In-depth Analysis of Code Execution Reasoning of Large...
FSE_LLM4SE1_A Tool for In-depth Analysis of Code Execution Reasoning of Large...
cl144
 
Bitumen Emulsion by Dr Sangita Ex CRRI Delhi
Bitumen Emulsion by Dr Sangita Ex CRRI Delhi
grilcodes
 
Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf
Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf
Shabista Imam
 
Industry 4.o the fourth revolutionWeek-2.pptx
Industry 4.o the fourth revolutionWeek-2.pptx
KNaveenKumarECE
 
Rapid Prototyping for XR: Lecture 6 - AI for Prototyping and Research Directi...
Rapid Prototyping for XR: Lecture 6 - AI for Prototyping and Research Directi...
Mark Billinghurst
 
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
Shabista Imam
 
special_edition_using_visual_foxpro_6.pdf
special_edition_using_visual_foxpro_6.pdf
Shabista Imam
 
Modern multi-proposer consensus implementations
Modern multi-proposer consensus implementations
François Garillot
 
Introduction to sensing and Week-1.pptx
Introduction to sensing and Week-1.pptx
KNaveenKumarECE
 
Introduction to Python Programming Language
Introduction to Python Programming Language
merlinjohnsy
 
Data Structures Module 3 Binary Trees Binary Search Trees Tree Traversals AVL...
Data Structures Module 3 Binary Trees Binary Search Trees Tree Traversals AVL...
resming1
 
Kel.3_A_Review_on_Internet_of_Things_for_Defense_v3.pptx
Kel.3_A_Review_on_Internet_of_Things_for_Defense_v3.pptx
Endang Saefullah
 
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
ssuser307730
 
System design handwritten notes guidance
System design handwritten notes guidance
Shabista Imam
 
Structured Programming with C++ :: Kjell Backman
Structured Programming with C++ :: Kjell Backman
Shabista Imam
 

Implicit objects advance Java

  • 1. Implicit Objects Advance Java (2160707) Prepared By:: Metaliya Darshit (130110107020)
  • 2. INTRODUCTION JSP Implicit Objects are the Java objects that the JSP Container makes available to developers in each page and developer can call them directly without being explicitly declared. JSP Implicit Objects are also called pre-defined variables.
  • 3. Object Description Request This is the HttpServletRequest object associated with the request. response This is the HttpServletResponse object associated with the response to the client. out This is the PrintWriter object used to send output to the client. session This is the HttpSession object associated with the request. application This is the ServletContext object associated with application context. config This is the ServletConfig object associated with the page. pageContext This encapsulates use of server-specific features like higher performance JspWriters. page This is simply a synonym for this, and is used to call the methods defined by the translated servlet class. Exception The Exception object allows the exception data to be accessed by designated JSP.
  • 4. REQUEST OBJECT Implicit object of type HttpServletRequest i.e. created for each jsp request by the web container. Use: To get request information such as parameter, header information, remote address, server name, server port, content type, character encoding To set, get and remove attributes from the jsp request scope.
  • 5. REQUEST OBJECT Index.html <form action="welcome.jsp"> <input type="text" name="uname"> <input type="submit" value="go"><br/> </form> Newjsp.jsp <% String name=request.getParameter("uname"); out.print("welcome "+name); %>
  • 6. RESPONSE OBJECT Implicit object of type HttpServletResponse. The instance of HttpServletResponse is created by the web container for each jsp request. Defines the interfaces that deal with creating new HTTP headers. Through this object the JSP programmer can add new cookies or date stamps, HTTP status codes etc. Use: To add or manipulate response such as redirect response to another resource, send error etc. Newjsp.jsp <% response.sendRedirect("http://www.google.com");
  • 7. OUT OBJECT Instance of a javax.servlet.jsp.JspWriter object and is used to send content in a response. Use: For writing any data to the buffer displaying dynamic data The java way to display text on the webpage Newjsp.jsp <% out.print("Today is:"+java.util.Calendar.getInstance().getTime()); %>
  • 8. SESSION OBJECT implicit object of type HttpSession. Use: to set, get or remove attribute or to get session information. to track client session between client requests
  • 9. SESSION OBJECT Index.html <form action="welcome.jsp"> <input type="text" name="uname"> <input type="submit" value="go"><br/> </form> Newjsp.jsp <% String name=request.getParameter("uname"); out.print("Welcome "+name); session.setAttribute("user",name); %><a href="second.jsp">second jsp page</a>
  • 11. APPLICATION OBJECT Implicit object of type ServletContext. Instance of ServletContext is created only once by the web container when application or project is deployed on the server. Use To get initialization parameter from configuaration file (web.xml). To get, set or remove attribute from the application scope.
  • 12. APPLICATION OBJECT Newjsp.jsp <% out.print("Welcome "+request.getParameter("uname")); String driver=application.getInitParameter("dname"); out.print("driver name is="+driver); %>
  • 13. CONFIG OBJECT Implicit object of type ServletConfig. Use: To get initialization parameter for a particular JSP page Allows the JSP programmer access to the Servlet or JSP engine initialization parameters such as the paths or file locations etc.
  • 15. PAGECONTEXT OBJECT Implicit object of type PageContext class Intended as a means to access information about the page while avoiding most of the implementation details. Use: To set, get or remove attribute from one of the following scopes: page request session Application In JSP, page scope is the default scope.
  • 16. PAGECONTEXT OBJECT Newjsp.jsp <% String name=request.getParameter("uname"); out.print("Welcome "+name); pageContext.setAttribute("user",name,PageContext.SESSION_SC OPE); %> <a href="second.jsp">second jsp page</a>
  • 18. PAGE OBJECT An actual reference to the instance of the page. It can be thought of as an object that represents the entire JSP page. implicit object of type java.lang.Throwable class. The exception object is a wrapper containing the exception thrown from the previous page. It is typically used to generate an appropriate response to the error condition.
  • 19. EXCEPTION OBJECT implicit object of type java.lang.Throwable class. A wrapper containing the exception thrown from the previous page. Use: To generate an appropriate response to the error condition.