溫馨提示×

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

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

如何使用SpringMVC攔截器

發(fā)布時(shí)間:2021-06-28 14:19:20 來(lái)源:億速云 閱讀:127 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要為大家展示了“如何使用SpringMVC攔截器”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“如何使用SpringMVC攔截器”這篇文章吧。

SpringMVC攔截器

攔截器類(lèi)似于Filter過(guò)濾器,它是springMVC特有的,它可以預(yù)處理和后處理,我們可以定義一些攔截器來(lái)實(shí)現(xiàn)特定的業(yè)務(wù)。

過(guò)濾器與攔截器本質(zhì)區(qū)別:

(1)攔截器時(shí)AOP思想的具體應(yīng)用(一個(gè)橫切面,直接切進(jìn)請(qǐng)求響應(yīng)中去)。

(2)攔截器時(shí)spring MVC特有的。

(3)攔截器只會(huì)攔截 訪問(wèn)控制器的方法,如果訪問(wèn)靜態(tài)資源如:.jsp/html/css/image/js 時(shí),它不會(huì)去攔截,而Filter過(guò)濾器無(wú)論什么都會(huì)去攔截。

自定義攔截器需要兩步:

第一步:編寫(xiě)自定義類(lèi)實(shí)現(xiàn) HandlerInterceptor 接口,且必須重寫(xiě)方法;

第二步:在配置類(lèi)中,注冊(cè)攔截器,實(shí)現(xiàn) WebMvcConfigurer接口,重寫(xiě)對(duì)應(yīng)的方法;關(guān)于配置類(lèi)                 我在這邊文章有記錄:http://kemok4.com/article/204128.htm

(1)public boolean preHandle() {}

請(qǐng)求前處理的邏輯 - 前置。
方法返回值:返回布爾值,返回true表示可以執(zhí)行后續(xù)代碼,返回false程序會(huì)終止。

(2)public void postHandle(){}

請(qǐng)響應(yīng)前處理的邏輯 - 后置。
方法返回值:無(wú)返回值。

目錄:

如何使用SpringMVC攔截器

package com.lxc.springboot.interceptor;
 
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.HandlerInterceptor;
 
@Component
public class MyInterceptor implements HandlerInterceptor {
    private static final Logger LOG = LoggerFactory.getLogger(LogInterceptor.class);
    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        s
        // 攔截前的操作
        System.out.println("-----------前置攔截-----------");
        return true;
    }
    
    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
        // 攔截后的操作
        System.out.println("------------后置攔截------------");
    }
 
    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
        // 可以做一些清理工作
    }
}

注冊(cè)攔截器:

package com.lxc.springboot.config;
 
 
import com.lxc.springboot.intercetor.MyInterceptor;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
 
import javax.annotation.Resource;
 
/**
 * @擴(kuò)展springMVC
 * 第一步:
 * @Configuration 注解的作用:讓這個(gè)類(lèi)變?yōu)榕渲妙?lèi)
 * 第二步:
 * 必須實(shí)現(xiàn) WebMvcConfigurer 接口
 */
@Configuration
public class SpringMvcConfig implements WebMvcConfigurer {
    @Resource
    private MyInterceptor myInterceptor;
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        // addInterceptor():注冊(cè)攔截器,參數(shù)是一個(gè)攔截器
        // addPathPatterns(): 路徑映射,哪些路徑需要被攔截,/** 全部攔截
        // excludePathPatterns(): 排除哪些路徑,不會(huì)被攔截
        registry.addInterceptor(myInterceptor)
                .addPathPatterns("/**")
                .excludePathPatterns("/login");
    }
}

如何使用SpringMVC攔截器

小例子

跟Filter一樣,記錄接口的請(qǐng)求響應(yīng)耗時(shí):

package com.lxc.springboot.interceptor;
 
 
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
 
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
/**
 * 這個(gè)是攔截器,與過(guò)濾器區(qū)別:
 *
 * 【【【【特別注意:增加攔截器,還需要在config中增加一個(gè)配置類(lèi)!配置】】】】
 *
 * (1)攔截器是spring特有的,經(jīng)常用于登錄校驗(yàn)、權(quán)限驗(yàn)證、請(qǐng)求打印日志等等。
 * (2)攔截器不需要你手動(dòng)調(diào)用后續(xù)代碼執(zhí)行,它是有兩個(gè)方法的,且分開(kāi)的,一個(gè)前,一個(gè)后
 * (3)而過(guò)濾器,我們會(huì)在打印日志的中間,使用filterChain.doFilter()方法去調(diào)用后續(xù)代碼執(zhí)行的!
 * (4)攔截器的 preHandle 前置處理方法,必須返回true,否則后續(xù)邏輯不會(huì)執(zhí)行,整個(gè)業(yè)務(wù)也會(huì)結(jié)束!
 */
@Component // 增加這個(gè)注解,讓spring能掃描到這個(gè)類(lèi)
public class LogInterceptor implements HandlerInterceptor {
    private static final Logger LOG = LoggerFactory.getLogger(LogInterceptor.class);
    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        LOG.info("【全局?jǐn)r截器】");
        LOG.info("*********** InterceptorLog日志開(kāi)始 *********** ");
        LOG.info("* 請(qǐng)求地址: {}, 方法: {}", request.getRequestURL().toString(), request.getMethod());
        LOG.info("* 遠(yuǎn)程地址: {}, 域名: {}, 端口: {}", request.getRemoteAddr(), request.getRemoteHost(), request.getRemotePort());
        long startTime = System.currentTimeMillis();
        request.setAttribute("boot-responseTime", startTime);
        return true;
    }
 
    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
        // request.getAttribute("boot-responseTime") 返回的是Object
        long startTimed = (long) request.getAttribute("boot-responseTime");
        LOG.info(" *********** InterceptorLog 結(jié)束,耗時(shí): {} ms *********** ", System.currentTimeMillis() - startTimed);
    }
}

在配置類(lèi)中注冊(cè)攔截器:

package com.lxc.springboot.config;
 
import com.lxc.springboot.intercetor.LogInterceptor;
import com.lxc.springboot.intercetor.MyInterceptor;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
 
import javax.annotation.Resource;
 
@Configuration
public class SpringMvcConfig implements WebMvcConfigurer {
    @Resource
    private MyInterceptor myInterceptor;
    @Resource
    private LogInterceptor logInterceptor;
    
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(logInterceptor)
                .addPathPatterns("/**")
                .excludePathPatterns("/login");
    }
    
}

測(cè)試:

如何使用SpringMVC攔截器

以上是“如何使用SpringMVC攔截器”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

AI