您好,登錄后才能下訂單哦!
這篇文章給大家介紹springboot 中如何實現一個攔截器,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
實現接口handlerIntercepto
public class ApiInterceptor implements HandlerInterceptor {
實現接口方法
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception
繼承配置類WebMvcConfigurationSupport
public class WebConfig extends WebMvcConfigurationSupport
實現添加攔截器的方法
@Override protected void addInterceptors(InterceptorRegistry registry) { // 配置需要攔截的請求 String addPathPatterns[]={"/boot/**"}; // 過濾調要攔截的請求 String excludePathPatterns[]={""}; // 添加攔截器 registry.addInterceptor(new ApiInterceptor()).addPathPatterns(addPathPatterns).excludePathPatterns(excludePathPatterns); } }
關于springboot 中如何實現一個攔截器就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。