81,111
社区成员
发帖
与我相关
我的任务
分享
public String intercept(ActionInvocation arg0) throws Exception {
// TODO Auto-generated method stub
System.out.println("interceptBefore");
String s=arg0.invoke();
System.out.println("interceptAfter");
return s;
}