开发者

Image counter in JSP

开发者 https://www.devze.com 2023-01-10 19:46 出处:网络
Need to do Image counter in JSP forhow many clicks have clicked for advertisement? Front-End : JSP Backen开发者_高级运维d: Mysql

Need to do Image counter in JSP for how many clicks have clicked for advertisement? Front-End : JSP Backen开发者_高级运维d : Mysql

or

Any other procedure methods for counting number of clicks in advertisement using JSP


Create a Filter and map it on an url-pattern covering the image's URL. Then basically do the following in doFilter() method:

clickDAO.increment(request.getRequestURI());
chain.doFilter(request, response);

And in the ClickDAO#increment() just basically do an UPDATE click SET count = count + 1 WHERE image = ?.

At least, the JSP is the wrong place to implement this logic.

0

精彩评论

暂无评论...
验证码 换一张
取 消