OfferTransform Your Career with Expert-Led IT Training. Flat discounts active!Explore Now
OnlineITGuru Logo
AI & Machine Learning

JSP Action Tag

Last updated on Jun 15, 2020

Copy Link:
JSP Action Tag
JSP Action Tag:
There are numerous JSP activity labels or components. Each JSP activity tag is utilized to play out some particular undertakings. The activity labels are utilized to control the stream among  pages and to utilize Java Bean.
  • jsp:forward
  • jsp:include
  • jsp:param
  • jsp:useBean
  • jsp:setProperty
  • jsp:getProperty
forward action tag: It requests to another resource by jsp or html
 Syntax of jsp:forward action tag without parameter:
<jsp:forward page="relativeURL | <%= expression %>" />
 Syntax of jsp:forward action tag with parameter:
<jsp:forward page="relativeURL | <%= expression %>"> <jsp:param name="parametername" value="parametervalue | <%=expression%>" /> </jsp:forward> include action tag:

The jsp:include activity tag is utilized to incorporate the substance of another asset it might be jsp, html or servlet. The jsp incorporate activity tag incorporates the asset at ask for time so it is better for dynamic pages in light of the fact that there may be changes in future. The jsp:include tag can be utilized to incorporate static and dynamic pages.

Include action and directive

Syntax of jsp:include action tag without parameter
<jsp:include page="relativeURL | <%= expression %>" />
Syntax of jsp:include action tag with parameter
<jsp:include page="relativeURL | <%= expression %>"> <jsp:param name="parametername" value="parametervalue | <%=expression%>" />
</jsp:include>
 Java Bean
A Java Bean is a java class
  •  no-arg constructor.
  • Serializable.
  • The methods to set and get the values of the methods, known as getter and setter methods.
Why use Java Bean?
 it is a reusable software component. A bean can be arranged in to many objects int one object, so this object from multiple places, it is easy maintenance.
Simple example of java bean class
//Employee.java package mypack; public class Employee implements java.io.Serializable{ private int id; private String name; public Employee(){} public void setId(int id){this.id=id;} public int getId(){return id;} public void setName(String name){this.name=name;} public String getName(){return name;} }  
Ø By using getter and setter methods to access the java bean class.
package mypack; public class Test{ public static void main(String args[]){ Employee e=new Employee();//object is created e.setName("Arjun");//setting value to the object System.out.println(e.getName()); }} jsp:useBean action tag:

The jsp:useBean activity tag is utilized to find or instantiate a bean class. In the event that bean protest of the Bean class is now made, it doesn't make the bean contingent upon the extension. In any case, if protest of bean is not made, it instantiates the bean.

Syntax of jsp:useBean action tag:
<jsp:useBean id= "instanceName" scope= "page | request | session | application" class= "packageName.className" type= "packageName.className" beanName="packageName.className | <%= expression >" > </jsp:useBean>
Attributes and Usage :
Id,scope,class,type,beam name
 Set and get property: The setProperty and getProperty activity labels are utilized for creating web application with Java Bean. In web devlopment, bean class is for the most part utilized in light of the fact that it is a reusable programming segment that speaks to information..
 Syntax :
<jsp:setProperty name="instanceOfBean" property= "*"   | property="propertyName" param="parameterName"  | property="propertyName" value="{ string | <%= expression %>}" /> Displaying applet in JSP : The active lag is utilized to insert applet in the jsp document and active tag downloads module at customer side to execute an applet or bean. Syntax: <jsp:plugin type= "applet | bean" code= "nameOfClassFile" codebase= "directoryNameOfClassFile" </jsp:plugin>