溫馨提示×

溫馨提示×

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

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

SpringBoot攔截器中依賴注入為null怎么辦

發(fā)布時(shí)間:2021-07-08 10:54:57 來源:億速云 閱讀:162 作者:小新 欄目:編程語言

這篇文章主要介紹SpringBoot攔截器中依賴注入為null怎么辦,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

該項(xiàng)目是基于SpringBoot框架的Maven項(xiàng)目。

今天在攔截器中處理攔截邏輯時(shí)需要使用注解調(diào)用其他方法 并且要從配置文件中讀取參數(shù)。所以我使用了以下注解:

  @Reference
  CoreRedisService redisService;

  @Value("${channel}")
  private String channel;

  @Value("${allowMethod}")
  private String allowMethod;

一個(gè)是獲取接口的引用,兩外兩個(gè)是獲取配置文件中的參數(shù),

但是在debug過程中發(fā)現(xiàn)三個(gè)都沒有注入進(jìn)來出現(xiàn)了下圖所示的情況:

SpringBoot攔截器中依賴注入為null怎么辦 

可以看到三個(gè)值都為null。

然后我查看了我項(xiàng)目的配置,確定該攔截器的位置是否在注解的范圍內(nèi)。發(fā)現(xiàn)沒問題, 百度了一下,發(fā)現(xiàn)了有個(gè)問題:攔截器加載的時(shí)間點(diǎn)在springcontext之前,所以在攔截器中注入自然為null

根據(jù)解決方法在配置攔截器鏈的類中先注入這個(gè)攔截器,代碼如下:

package com.***;

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.WebMvcConfigurerAdapter;

/**
 * 配置攔截器鏈
 * Created by yefuliang on 2017/10/23.
 */
@Configuration
public class bgqWebAppConfigurer extends WebMvcConfigurerAdapter {

  @Bean
  public bgqCommonInterceptorl bgqCommonInterceptorl() {
    return new bgqCommonInterceptorl();
  }

  public void addInterceptors(InterceptorRegistry registry) {
    // 多個(gè)攔截器組成一個(gè)攔截器鏈
    // addPathPatterns 用于添加攔截規(guī)則
    // excludePathPatterns 用戶排除攔截
    registry.addInterceptor(bgqCommonInterceptorl()).addPathPatterns("/**");
    super.addInterceptors(registry);
  }
}

注意注入的是攔截器類,不是你攔截器里面要注入的類,然后攔截器鏈的 registry.addInterceptor(bgqCommonInterceptorl()).addPathPatterns(“/**”);

里面的第一個(gè)參數(shù)就不需要你再重新new一個(gè)了。

改好之后debug:

SpringBoot攔截器中依賴注入為null怎么辦 

可以看到,都注入了進(jìn)來,問題解決。

以上是“SpringBoot攔截器中依賴注入為null怎么辦”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI