站内搜索: 请输入搜索关键词

当前页面: 开发资料首页JSP 专题jsp计数器-bean文件

jsp计数器-bean文件

摘要: jsp计数器-bean文件



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;
}
}



↑返回目录
前一篇: jsp在线考试系统-htm文件
后一篇: jsp计数器-jsp文件