Home Jsp Simple-jsp-example Using Beans And Session Scope



Using Beans And Session Scope
Posted on: March 11, 2008 at 12:00 AM
The scope in which the Bean exists and the variable named in id is available. The default value of scope is page. We use the scope attribute to specify additional places where bean is stored.

Using Beans And Session Scope

        

The scope in which the Bean exists and the variable named in id is available. The  default value of scope is page. We use the scope attribute to specify additional places where bean is stored. 

session: In this the bean will get stored in the HttpSession object associated with the current session.

In this example we are making one bean class inside which we are declaring one variable counter of type int. Inside this class declare one setter and getter method. Now make one jsp page inside which declare one standard tag <jsp:useBean> which is used to build the object of the bean class. To set the the value of the setter method of the bean class in the jsp use a scriptlet directive. Inside this directive call the setCounter() defined in the bean class by the reference of the bean class. At last to get the value which we have set in the setter method call the method getCounter() defined in the bean class by the reference of the bean class. This method will return how many times the page has been visited in the current session. 

The code of the program is given below:

package Mybean;
public class UsingBeanScopeSession{
  private int counter = 0;
  public void setCounter(int counter){
    this.counter = counter;
  }
  public int getCounter(){
    return counter;
  }
}

 

<html>
  <head>
  <title>Using Beans and Session Scope</title>
  </head>
  <body>
  <h1>Using Beans and Session Scope</h1>
  <jsp:useBean id="sessionScopeBean" class="Mybean.UsingBeanScopeSession" scope="session" />
  <% 
  sessionScopeBean.setCounter(sessionScopeBean.getCounter() + 1);
  %>
Counter value is <%= sessionScopeBean.getCounter() %>
  </body>
</html>

The output of the program is given below:

Download this example.

Related Tags for Using Beans And Session Scope:
cioscopevariabledefaultpagevaluenameattributeriaidaiifaddwhereexiststostorecibeaneilitvaruseulpecefaultinmtrbeaddadditionadaceesspecstsagenamedmestoredtorwhichsspatiseaandarcopvattxiscossrithavstabablaluexiefaultplndono


More Tutorials from this section

Ask Questions?    Discuss: Using Beans And Session Scope  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.