getAttribute(),setAttribute()
网站访问计数
<%
Integer count = (Integer) application.getAttribute("count");
if(count == null){
count = 1;
application.setAttribute("count",count);
}else{
count++;
application.setAttribute("count",count);
}
%>
原文:https://www.cnblogs.com/claduxyz/p/12437344.html