·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> jsp网站建设开发 >> jsp计数器-bean文件

jsp计数器-bean文件

作者:佚名      jsp网站建设开发编辑:admin      更新时间:2022-07-23
import java.io.Serializable;

public class Counter implements Serializable{

// Initialize the bean on creation
int count = 0;

// Parameterless Constructor
public Counter() {

}

// PRoperty Getter
public int getCount() {

// Increment the count property, with every request
count++;

return this.count;
}

// Property Setter
public void setCount(int count) {

this.count = count;
}
}