05-JSP 3行统计访问量

1
2
3
4
5
6
<%
Integer count = (Integer) application.getAttribute("count");
count = (count == null || count == 0) ? 1 : count+1;
application.setAttribute("count", count);
%>
页面访问量:${count}次

05-JSP 3行统计访问量
https://janycode.github.io/2018/04/29/04_网页技术/05_JSP/05-JSP 3行统计访问量/
作者
Jerry(姜源)
发布于
2018年4月29日
许可协议