中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何在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

赤峰市| 乌拉特后旗| 麦盖提县| 巫溪县| 龙井市| 武山县| 陵川县| 德兴市| 芦溪县| 博罗县| 泸溪县| 康平县| 博野县| 邯郸县| 西安市| 宽城| 应城市| 调兵山市| 四子王旗| 河北区| 通江县| 松原市| 云安县| 蒙城县| 白河县| 晋江市| 营山县| 吴堡县| 英吉沙县| 如东县| 利辛县| 衡东县| 腾冲县| 岚皋县| 昆明市| 莎车县| 曲水县| 大荔县| 安龙县| 广元市| 无为县|