一.自定义拦截器:
struts2实现拦截器的方式有两种:
①.继承AbstractInterceptor类
②.实现Interceptor接口
1 @Override2 public String intercept(ActionInvocation arg0) throws Exception {3 System.out.println("开始记录日志...");4 //继续往下执行5 String resultCode = arg0.invoke();6 System.out.println("结束记录日志...");7 return resultCode;8 }
二.在struts.xml中配置拦截器
1 2 5 67 8 9 10 11 12 13 3914 15 26 27 2816 17 18 19 20 21 2522 23 24 29 30 31 36 38/upload_ok.jsp 37