提供项目说明

This commit is contained in:
luoxiang
2018-12-18 22:27:03 +08:00
parent c3428d4056
commit 51e22340af
3 changed files with 737 additions and 1 deletions

View File

@ -17,6 +17,7 @@ public class MyFirstInterceptor implements HandlerInterceptor {
return true;
}
// 需要注意的是,如果对应的程序报错,不一定会进入这个方法 但一定会进入afterCompletion这个方法
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) {
System.out.println("进入第一个拦截器postHandle");
}