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

溫馨提示×

溫馨提示×

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

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

詳解SpringBoot開發使用@ImportResource注解影響攔截器

發布時間:2020-08-31 16:04:20 來源:腳本之家 閱讀:165 作者:袁老板 欄目:編程語言

問題描述

今天在給SpringBoot項目配置攔截器的時候發現怎么都進不到攔截器的方法里面,在搜索引擎上看了無數篇關于配置攔截器的文章都沒有找到解決方案。

就在我準備放棄的時候,在 CSDN 上發現了一篇文章,說的是SpringBoot 用了@ImportResource 配置的攔截器就不起作用了。于是我就趕緊到Application啟動類看了一眼,果然項目中使用了@ImportResource 注解用于配置系統的參數。

代碼如下:

啟動類配置

package com.xx.xxx;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;


@EnableDiscoveryClient
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class,
    ThymeleafAutoConfiguration.class})
@SpringBootApplication
// 注意這里 !!!!
@ImportResource(locations={"classpath:config/application-*.xml"})
@EnableHystrix
public class Application extends SpringBootServletInitializer {
  
  public static void main(String[] args) {
   SpringApplication.run(Application.class, args);
  }
}

攔截器配置

package com.xx.xxx.config;

import com.example.springbootdemo.Interceptor.LoginInterceptor;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;


@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {

  /**
   * 攔截器(用戶登錄驗證)
   * @param registry
   */
  @Override
  public void addInterceptors(InterceptorRegistry registry) {
    // addPathPatterns 用于添加攔截規則
    // excludePathPatterns 用戶排除攔截
    registry.addInterceptor(new LoginInterceptor()).addPathPatterns("/**").excludePathPatterns("/user","/login");
    super.addInterceptors(registry);
  }
}

攔截器實現

package com.xx.xxx.interceptor;

import org.springframework.stereotype.Component;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class LoginInterceptor implements HandlerInterceptor {
  
  private final static Logger LOGGER = LoggerFactory.getLogger(LoginInterceptor.class);
  
  @Override
  public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
    LOGGER.info("******進來了******");
    return true;
  }

  @Override
  public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
  }

  @Override
  public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
  }
}

具體為什么使用@ImportResource注解會影響攔截器的配置,如果有機會研究一下源碼或許能夠找到答案。

PS : SpringBoot 版本 1.5.2

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

宁津县| 麦盖提县| 合水县| 托克托县| 宜州市| 洮南市| 嵩明县| 呼和浩特市| 合水县| 佛山市| 万宁市| 闽侯县| 永吉县| 民县| 乌拉特前旗| 玉龙| 衡山县| 泗洪县| 定结县| 湘潭市| 平遥县| 林州市| 长治县| 闽清县| 南汇区| 商都县| 郎溪县| 南溪县| 洱源县| 阿拉善右旗| 洪湖市| 岳阳县| 枣阳市| 万安县| 彭州市| 广汉市| 射洪县| 伊川县| 霍林郭勒市| 临汾市| 重庆市|