问题描述
- java web写了过滤器,作用显示一个servlet执行的时间,不过显示在哪里呢?
-
package exa;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;public class TimerFilter implements Filter{
private FilterConfig config = null;
public void init(FilterConfig config) throws ServletException{
this.config=config;
}
public void destroy(){
config = null;
}
public void doFilter(ServletRequest request,ServletResponse response,FilterChain chain)throws IOException,ServletException{
long before = System.currentTimeMillis();
chain.doFilter(request,response);
long after = System.currentTimeMillis();
String name=" ";
if(request instanceof HttpServletRequest){
name = ((HttpServletRequest)request).getRequestURI();
}
config.getServletContext().log(name+":"+(after-before)+"ms");
}
}
解决方案
过滤器是作用于所有的Action的,在进入action之前,或者之后对请求的预处理或者对响应结果的后处理的。
你可以对Action的响应作后处理,将你计算的执行时间放入response中,在浏览器上显示。
解决方案二:
可以显示到控制台和访问后的界面啊,在访问后的界面显示加载界面需要的时间
解决方案三:
这个一般打印在后台就行了吧