日期:2014-05-17  浏览次数:20672 次

点击文章现实点击量
我想完成一个现实文章点击量的功能。怎么完成???详细的~~

------解决方案--------------------
jsp么?
可以用application对象。。。
<%!
synchronized void countPeople()
{
   ServletContext application=getServletContext();
   Integer number=(Integer)application.getAttribute("Count");
   if(number==null){
   number=new Integer(1);
   application.setAttribute("Count",number);
}else{
   number=new Integer(number.intValue()+1);
   application.setAttribute("Count",number);
}} %>

------解决方案--------------------
刚开始是文章的标题列表。然后根据文章资源的id去浏览整片文章
那么在标题你可以链接一个action 的方法,在此方法中你可以操作数据库使对应访问量++

------解决方案--------------------
引用:
标题连接原本就是一个action连接了,再加一个不可行吧 

一个action里面你可以进行两个操作。第一,查找访问量并更新使访问量增一;第二,查找文章bean,并return