java web项目,就几个JSP页面,本人怎么跟踪用户什么时间点击了那个jsp页面,什么时候登录的,什么时候关闭jsp页面的,把跟踪用户的操作(基本上就上面这三个操作),存入数据库里面,什么时候干什么的。怎么实现这个跟踪功能,求高手给思路,或关键代码
解决方案
50
log4j2 就可以实现
在jsp中使用log4j
https://logging.apache.org/log4j/2.x/manual/webapp.html
http://my.oschina.net/u/2474629/blog/539893
log4j2 写入数据库
https://logging.apache.org/log4j/2.x/manual/appenders.html#JDBCAppender
http://blog.csdn.net/ErErFei/article/details/50884155
更直接的方法是 连数据库(连接池),写表
在jsp中使用log4j
https://logging.apache.org/log4j/2.x/manual/webapp.html
http://my.oschina.net/u/2474629/blog/539893
log4j2 写入数据库
https://logging.apache.org/log4j/2.x/manual/appenders.html#JDBCAppender
http://blog.csdn.net/ErErFei/article/details/50884155
更直接的方法是 连数据库(连接池),写表
10
这个和shiro什么区别?