• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to count hits

 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi

i am retreiving fields from the database in a loop as links
i need to count the number of views for each link
i need to coutn the number of hits for each link

how can i do that using jsp or java
please help me solve the problem


waiting for your reply

regads
santosh
 
Ranch Hand
Posts: 74
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1.instead of directly providing the link to the user, give the user link to the common servlet and the link as parameter with some id, so when a request for that id comes increment the counter's and forward the request to the url

2. use filter for all the request, and do the counter in the filter, use id for the each url
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic