Application Implicit Object

Advertisements

Exception Implicit Object in JSP Pagecontext Implicit Object JSP

Application Implicit Object

In JSP, application is an implicit object of type ServletContext. this application object in the Servlet programming is ServletContext.

For all jsp in a web application, there must be a single application object with application object we can share the data from one JSP to any other JSP in the web application.

The instance of ServletContext is created only once by the web container when application or project is deployed on the server.

This object can be used to get initialization parameter from configuration file (web.xml). It can also be used to get, set or remove attribute from the application scope.

Example of Application implicit object

index.html

<form action="welcome.jsp">  
<input type="text" name="uname">  
<input type="submit" value="go"><br/>  
</form>

welcome.jsp

<%   
out.print("Welcome "+request.getParameter("uname"));  
 
String driver=application.getInitParameter("dname");  
out.print("driver name is="+driver); 
%> 

web.xml

<web-app>  
  
<servlet>  
<servlet-name>One</servlet-name>  
<jsp-file>/welcome.jsp</servlet-class>  
</servlet>  
  
<servlet-mapping>  
<servlet-name>One</servlet-name>  
<url-pattern>/welcome</url-pattern>  
</servlet-mapping>  
  
<context-param>  
<param-name>dname</param-name>  
<param-value>sun.jdbc.odbc.JdbcOdbcDriver</param-value>  
</context-param>  
 
</web-app> 

Exception Implicit Object in JSP Pagecontext Implicit Object JSP

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements