Weekend -Special offer upto 50% off | OFFER ENDING IN: 0 D 0 H 0 M 0 S

Log In to start Learning

Login via

Post By Admin Last Updated At 2020-06-15
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:
" />
 Syntax of jsp:forward action tag with parameter:
">" />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
" />
Syntax of jsp:include action tag with parameter
">" />
 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.javapackage 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 createde.setName("Arjun");//setting value to the objectSystem.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:
class= "packageName.className" type= "packageName.className"beanName="packageName.className | <%= expression >" >
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 :
}"/>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>