随笔 - 6  文章 - 129  trackbacks - 0
<2024年3月>
252627282912
3456789
10111213141516
17181920212223
24252627282930
31123456

常用链接

留言簿(14)

随笔档案(6)

文章分类(467)

文章档案(423)

相册

收藏夹(18)

JAVA

搜索

  •  

积分与排名

  • 积分 - 814158
  • 排名 - 49

最新评论

阅读排行榜

评论排行榜

轉自:http://www.java2s.com/CN/Code/Java/Servlets/LoggingFilter.htm
import 
java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public final class LoggingFilter implements Filter 
{
  private FilterConfig filterConfig = null;

  public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain)
    throws IOException, ServletException 
  {

    long start = System.currentTimeMillis();
    String address =  request.getRemoteAddr();
    String file = ((HttpServletRequestrequest).getRequestURI();
        
    chain.doFilter(request, response);

    filterConfig.getServletContext().log(
        "User access! " +      
        " User IP: " + address +      
        " Resource: " + file + 
        " Milliseconds used: " (System.currentTimeMillis() - start
    );
  }

  public void destroy() { }

  public void init(FilterConfig filterConfig) {
    this.filterConfig = filterConfig;
  }
}


posted on 2009-12-21 10:35 Ke 阅读(241) 评论(0)  编辑  收藏 所属分类: othersjava

只有注册用户登录后才能发表评论。


网站导航: