您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何在spring boot中配置攔截器,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
首先引入web模塊的依賴:
<!-- spring boot web 組件 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- spring boot web 組件 -->
然后編寫攔截器類:
import lombok.extern.slf4j.Slf4j;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Component;import org.springframework.util.StringUtils;import org.springframework.web.method.HandlerMethod;import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;import simple.proj.zxz.play.comm.GeneralConsts;import simple.proj.zxz.play.pojo.vo.comm.CommOutVO;import simple.proj.zxz.play.prop.CommProp;import simple.proj.zxz.play.utils.JsonUtil; import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse; @Slf4j@Componentpublic class ApiAccessInterceptor extends HandlerInterceptorAdapter { @Autowiredprivate CommProp commProp; /*** http響應(yīng)類型字段*/private static final String RESPONSE_CONTENT_TYPE = "Content-Type";/*** http響應(yīng)類型:json*/private static final String RESPONSE_HEADER_JSON = "application/json"; @Overridepublic boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {//方法類型過(guò)濾if (!(handler instanceof HandlerMethod)) {return super.preHandle(request, response, handler);} //token驗(yàn)證String token = request.getHeader(GeneralConsts.REQ_HEADER_AUTH);if (StringUtils.isEmpty(token)) {//沒(méi)有token信息,未登錄response.setHeader(RESPONSE_CONTENT_TYPE, RESPONSE_HEADER_JSON);response.getWriter().write(JsonUtil.toFormattedJsonString(CommOutVO.getNotAuth()));return false;} else if (!auth(token)) {return false;} return super.preHandle(request, response, handler);} private boolean auth(String token) {return token.equals(commProp.getUserPermanentAuthorization());} }
最后在配置類里面加入攔截器以及要攔截的路徑:
import com.alibaba.fastjson.serializer.SerializerFeature;import com.alibaba.fastjson.support.config.FastJsonConfig;import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter4;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.boot.autoconfigure.http.HttpMessageConverters;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.WebMvcConfigurer;import simple.proj.zxz.play.interceptors.ApiAccessInterceptor;import simple.proj.zxz.play.prop.CommProp; @Configurationpublic class WebConfig implements WebMvcConfigurer { @Autowiredprivate ApiAccessInterceptor apiAccessInterceptor;@Autowiredprivate CommProp commProp; @Overridepublic void addInterceptors(InterceptorRegistry registry) {registry.addInterceptor(apiAccessInterceptor).addPathPatterns("/" + commProp.getPlayApiVersionLatest() + "/**"); //注意,攔截器配置不能使用配置文件的統(tǒng)一api路徑配置:server.servlet.context-path,這樣配置是無(wú)效的。//只能使用controller里面的具體路徑配置,才能有效攔截// registry.addInterceptor(apiAccessInterceptor).addPathPatterns("/play/api/**"); }}
springboot一種全新的編程規(guī)范,其設(shè)計(jì)目的是用來(lái)簡(jiǎn)化新Spring應(yīng)用的初始搭建以及開發(fā)過(guò)程,SpringBoot也是一個(gè)服務(wù)于框架的框架,服務(wù)范圍是簡(jiǎn)化配置文件。
關(guān)于如何在spring boot中配置攔截器就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(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)容。