溫馨提示×

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

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

springboot中怎么利用springmvc實(shí)現(xiàn)登錄攔截

發(fā)布時(shí)間:2021-08-07 14:21:08 來(lái)源:億速云 閱讀:136 作者:Leah 欄目:編程語(yǔ)言

springboot中怎么利用springmvc實(shí)現(xiàn)登錄攔截,相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

LoginInterceptor

package com.ytkj.smart_sand.system.interceptor;import com.alibaba.fastjson.JSONObject;import com.ytkj.smart_sand.base.DataResponse;import com.ytkj.smart_sand.dict.user.Dic_sysuser_sessionkey;import com.ytkj.smart_sand.pojo.user.SysUser;import org.springframework.web.servlet.HandlerInterceptor;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;/** * @description: * @author: changzhou.xie@yuantiaokj.com * @date: 2019/10/21 17:04 */public class LoginInterceptor implements HandlerInterceptor {  @Override  public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {    System.out.println("requestURI:" + request.getRequestURI());    SysUser sysUser = (SysUser) request.getSession().getAttribute(Dic_sysuser_sessionkey.CURRENT_USER);    if(sysUser == null){      DataResponse result = DataResponse.failure("0100", "用戶(hù)沒(méi)有登錄");      response.setContentType("application/json;charset=UTF-8");      response.getWriter().write(JSONObject.toJSONString(result));      return false;    }    return true;  }}

LoginConfiguration

package com.ytkj.smart_sand.config;import com.ytkj.smart_sand.dict.system.Dict_decollator;import com.ytkj.smart_sand.system.interceptor.LoginInterceptor;import com.ytkj.smart_sand.system.properties.LoginInfoProperties;import org.apache.commons.lang3.StringUtils;import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.InterceptorRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;/** * @description: * @author: changzhou.xie@yuantiaokj.com * @date: 2019/10/21 17:11 */@Configurationpublic class LoginConfiguration implements WebMvcConfigurer {  /*  注意攔截路徑的寫(xiě)法:    /**/*.html 表示所有的html文件。    /img/**  表示img目錄下的所有文件。  */  @Override  public void addInterceptors(InterceptorRegistry registry) {    String paths = LoginInfoProperties.getValue("loginReleasePaths");    String[] loginReleasePaths;    if(StringUtils.isNotBlank(paths)){      loginReleasePaths = paths.split(Dict_decollator.ENG_COMMA);    }else{      loginReleasePaths = new String[0];    }    registry.addInterceptor(new LoginInterceptor())        .addPathPatterns("/**")//攔截路徑        .excludePathPatterns(loginReleasePaths);//不進(jìn)行攔截路徑  }}

LoginInfoProperties

package com.ytkj.smart_sand.system.properties;import java.util.MissingResourceException;import java.util.ResourceBundle;/** * @description: * @author: changzhou.xie@yuantiaokj.com * @date: 2019/10/21 16:59 */public class LoginInfoProperties {  private static final String LOGIN = "login";  private static ResourceBundle LOGIN_BUNDLE = ResourceBundle.getBundle(LOGIN);  public static String getValue(String key){    try {      return LOGIN_BUNDLE.getString(key);    } catch (MissingResourceException e) {      e.printStackTrace();    }    return "";  }}

login.properties

# main/resources/login.properties# /**/*.html 表示所有的html文件。# /img/**  表示img目錄下的所有文件。loginReleasePaths=/img/**,\/**/*.html,\/user/login/pc

ResourceBundle

是一個(gè)加載properties文件的工具類(lèi)。支持國(guó)際化。從classpath中加載配置文件。

文件命名方式 baseName_國(guó)別_語(yǔ)言.properties

ResourceBundle bundle = ResourceBundle.getBundle("res", new Locale("zh", "CN"));

new Locale("zh", "CN")這個(gè)對(duì)象就告訴了程序你的本地化信息。如果不指定則使用系統(tǒng)默認(rèn)的Locale。

classpath下尋找res_zh_CN.properties 若不存在  那么會(huì)去找res_zh.properties,若還是不存在  則會(huì)去尋找res.properties,要還是找不到的話(huà),那么就該拋異常了:MissingResourceException.

// login是資源文件的名稱(chēng)。ResourceBundle login = ResourceBundle.getBundle("login");//不指定locale會(huì)使用系統(tǒng)默認(rèn)的。Exception in thread "main" java.util.MissingResourceException: Can't find bundle for base name login, locale zh_CN

看完上述內(nèi)容,你們掌握springboot中怎么利用springmvc實(shí)現(xiàn)登錄攔截的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(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