91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Springboot中引入攔截器

發布時間:2021-05-10 16:10:02 來源:億速云 閱讀:323 作者:Leah 欄目:編程語言

本篇文章為大家展示了如何在Springboot中引入攔截器,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

springboot是什么

springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

Springboot引入攔截器

自定義的攔截器類 Interceptor

package cn.zytao.taosir.auth.config;import javax.annotation.Resource;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.springframework.web.servlet.HandlerInterceptor;import org.springframework.web.servlet.ModelAndView;public class AuthInterceptor implements HandlerInterceptor{    /**   * 請求處理之后   */  @Override  public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)      throws Exception {    // TODO Auto-generated method stub    HandlerInterceptor.super.afterCompletion(request, response, handler, ex);  }  /**   * 請求處理之后調用   */  @Override  public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler,      ModelAndView modelAndView) throws Exception {    // TODO Auto-generated method stub    HandlerInterceptor.super.postHandle(request, response, handler, modelAndView);  }  /**   * 請求處理之前   */  @Override  public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)      throws Exception {    return HandlerInterceptor.super.preHandle(request, response, handler);  }}

將攔截器添加到springmvc配置中,并放行swagger的相關資源

package cn.zytao.taosir.auth.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.InterceptorRegistry;import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;@Configurationpublic class SpringMVCConfig extends WebMvcConfigurationSupport{  @Bean  public AuthInterceptor getAuthInterceptor() {    return new AuthInterceptor();  }  @Override  public void addInterceptors(InterceptorRegistry registry) {    registry    .addInterceptor(getAuthInterceptor())    .addPathPatterns("/**")    .excludePathPatterns("/login")    .excludePathPatterns("/swagger-resources/**", "/webjars/**", "/v2/**", "/swagger-ui.html/**");    super.addInterceptors(registry);  }  @Override  protected void addResourceHandlers(ResourceHandlerRegistry registry) {    registry.addResourceHandler("swagger-ui.html")    .addResourceLocations("classpath:/META-INF/resources/");    registry.addResourceHandler("/webjars/**")    .addResourceLocations("classpath:/META-INF/resources/webjars/");    super.addResourceHandlers(registry);  }}

在addInterceptors方法中添加攔截器時,是new的一個攔截器。而并不是引入springBean容器初始化時,已經初始化好了的bean實例,并不是同一個對象,故而訪問時肯定是無法引入Interceptor類里面引入的bean實例,可能產生空指針異常。

即無法引入默認注入的Bean,那么我們就自己定義一個Bean,然后在攔截器添加方法內引入這個bean即可,上面主要對此進行了處理。

上述內容就是如何在Springboot中引入攔截器,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高平市| 山西省| 宁蒗| 乌兰县| 寿光市| 西宁市| 澜沧| 莱州市| 武义县| 高淳县| 都安| 即墨市| 磴口县| 南宁市| 开原市| 长寿区| 图们市| 阿坝县| 平陆县| 同江市| 穆棱市| 景德镇市| 凤山县| 康马县| 长乐市| 星子县| 平邑县| 安阳市| 宜兴市| 唐山市| 赞皇县| 青河县| 会理县| 麻城市| 寿阳县| 金阳县| 西昌市| 武城县| 呼图壁县| 盈江县| 文水县|