Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

SpringMVC interceptor

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

HandlerInterceptor

Public class HandlerInterceptorDemo implements HandlerInterceptor {@ Override public boolean preHandle (HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {return false;} @ Override public void postHandle (HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {} @ Override public void afterCompletion (HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception

WebRequestInterceptor

Public class WebRequestInterceptorDemo implements WebRequestInterceptor {@ Override public void preHandle (WebRequest webRequest) throws Exception {} @ Override public void postHandle (WebRequest webRequest, ModelMap modelMap) throws Exception {} @ Override public void afterCompletion (WebRequest webRequest, Exception e) throws Exception

Note: interceptor is the business processing before and after the specific handler method after the request is adapted.

Interceptor does not intercept all request, and it does not work until handlerMapping finds the corresponding mapping.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report