JSP Java Tutorial

Jsp code


    
        Using Beans and Session Scope
    
    
        

Using Beans and Session Scope


        
        <% 
        bean1.setCounter(bean1.getCounter() + 1);
        %>
        The counter value is:  
    

Counter.java

package beans;
public class Counter 
{
    private int counter = 0;
    public void setCounter(int value) 
    {
        this.counter = value;
    }
    public int getCounter() 
    {
        return this.counter;
    }
    public Counter() 
    {
    }
}