Interface VControllerInterceptorEngine
public interface VControllerInterceptorEngine
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterCompletion(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.web.method.HandlerMethod handler, Optional<Exception> exception) voidpostHandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.web.method.HandlerMethod handler, org.springframework.web.servlet.ModelAndView modelAndView) booleanpreHandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.web.method.HandlerMethod handler)
-
Method Details
-
preHandle
boolean preHandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.web.method.HandlerMethod handler) throws Exception - Throws:
Exception
-
postHandle
void postHandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.web.method.HandlerMethod handler, org.springframework.web.servlet.ModelAndView modelAndView) throws Exception - Throws:
Exception
-
afterCompletion
void afterCompletion(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.web.method.HandlerMethod handler, Optional<Exception> exception) throws Exception - Throws:
Exception
-