亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何在spring boot中配置攔截器

發布時間:2021-05-23 10:54:44 來源:億速云 閱讀:235 作者:Leah 欄目:編程語言

這篇文章給大家介紹如何在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是什么

springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

關于如何在spring boot中配置攔截器就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

东明县| 安康市| 贡嘎县| 汪清县| 拜泉县| 明星| 金秀| 长葛市| 化隆| 军事| 汝南县| 赤峰市| 察隅县| 胶州市| 赤水市| 手游| 铁力市| 大理市| 安平县| 荣昌县| 阿坝| 兴隆县| 额济纳旗| 镇原县| 南昌市| 团风县| 星子县| 和平区| 堆龙德庆县| 开平市| 伊春市| 浦东新区| 梨树县| 高雄县| 喜德县| 宜黄县| 永丰县| 大理市| 衡阳县| 中超| 通许县|