1 16 17 package org.springframework.web.context.request; 18 19 import org.springframework.ui.ModelMap; 20 21 53 public interface WebRequestInterceptor { 54 55 62 void preHandle(WebRequest request) throws Exception ; 63 64 75 void postHandle(WebRequest request, ModelMap model) throws Exception ; 76 77 87 void afterCompletion(WebRequest request, Exception ex) throws Exception ; 88 89 } 90 | Popular Tags |