您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何在spring boot中配置攔截器,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
首先引入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響應類型字段*/private static final String RESPONSE_CONTENT_TYPE = "Content-Type";/*** http響應類型:json*/private static final String RESPONSE_HEADER_JSON = "application/json"; @Overridepublic boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {//方法類型過濾if (!(handler instanceof HandlerMethod)) {return super.preHandle(request, response, handler);} //token驗證String token = request.getHeader(GeneralConsts.REQ_HEADER_AUTH);if (StringUtils.isEmpty(token)) {//沒有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() + "/**"); //注意,攔截器配置不能使用配置文件的統一api路徑配置:server.servlet.context-path,這樣配置是無效的。//只能使用controller里面的具體路徑配置,才能有效攔截// registry.addInterceptor(apiAccessInterceptor).addPathPatterns("/play/api/**"); }}
springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。
關于如何在spring boot中配置攔截器就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。