jsp中应用Aplication统计访问量
生活随笔
收集整理的這篇文章主要介紹了
jsp中应用Aplication统计访问量
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1.application的概述
服務(wù)器啟動(dòng)后就產(chǎn)生了這個(gè)application對象,當(dāng)客戶在所訪問的網(wǎng)站的各個(gè)頁面之間瀏覽時(shí),這個(gè)application對象都是同一個(gè),直到服務(wù)器關(guān)閉。但是與session不同的是,所有客戶的application對象都是同一個(gè),即所有客戶共享這個(gè)內(nèi)置的application對象。
2.用到的方法有:
public void setAttribute(String name,Object obj): 設(shè)置由name指定的名字的application對象的屬性的值object.
public Object getAttribute(String name):返回由name指定的名字的application對象的屬性的值.
3.在jsp中使用Aplication的對象統(tǒng)計(jì)訪問量
<%
Integer totalCount=(Integer)application.getAttribute("totalCount");
if(totalCount==null){
DBConnection db2 = new DBConnection();
String sql2 = "select * from sitevisits";
ResultSet rs2 = db2.executeQuery(sql2);
while (rs2.next()) {
String totalcount = rs2.getString("totalcount");
int sum = Integer.parseInt(totalcount);
totalCount=new Integer(sum);
}
}else{
totalCount=new Integer(totalCount.intValue()+1);
DBConnection db3 = new DBConnection();
String sql3 = "update sitevisits set totalcount="+totalCount;
int i = db3.executeUpdate(sql3);
}
application.setAttribute("totalCount",totalCount);
%>
<p>訪問率:<%=totalCount%></p>
4.缺點(diǎn):每次的訪問都要讀取數(shù)據(jù)與更新數(shù)據(jù),效率低,速度慢,消耗內(nèi)存。
服務(wù)器啟動(dòng)后就產(chǎn)生了這個(gè)application對象,當(dāng)客戶在所訪問的網(wǎng)站的各個(gè)頁面之間瀏覽時(shí),這個(gè)application對象都是同一個(gè),直到服務(wù)器關(guān)閉。但是與session不同的是,所有客戶的application對象都是同一個(gè),即所有客戶共享這個(gè)內(nèi)置的application對象。
2.用到的方法有:
public void setAttribute(String name,Object obj): 設(shè)置由name指定的名字的application對象的屬性的值object.
public Object getAttribute(String name):返回由name指定的名字的application對象的屬性的值.
3.在jsp中使用Aplication的對象統(tǒng)計(jì)訪問量
<%
Integer totalCount=(Integer)application.getAttribute("totalCount");
if(totalCount==null){
DBConnection db2 = new DBConnection();
String sql2 = "select * from sitevisits";
ResultSet rs2 = db2.executeQuery(sql2);
while (rs2.next()) {
String totalcount = rs2.getString("totalcount");
int sum = Integer.parseInt(totalcount);
totalCount=new Integer(sum);
}
}else{
totalCount=new Integer(totalCount.intValue()+1);
DBConnection db3 = new DBConnection();
String sql3 = "update sitevisits set totalcount="+totalCount;
int i = db3.executeUpdate(sql3);
}
application.setAttribute("totalCount",totalCount);
%>
<p>訪問率:<%=totalCount%></p>
4.缺點(diǎn):每次的訪問都要讀取數(shù)據(jù)與更新數(shù)據(jù),效率低,速度慢,消耗內(nèi)存。
總結(jié)
以上是生活随笔為你收集整理的jsp中应用Aplication统计访问量的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: centos查找和替换字符串
- 下一篇: Kafka实战 - 06 Kafka消费