主頁 > 知識(shí)庫 > 基于redis實(shí)現(xiàn)token驗(yàn)證用戶是否登陸

基于redis實(shí)現(xiàn)token驗(yàn)證用戶是否登陸

熱門標(biāo)簽:南京手機(jī)外呼系統(tǒng)廠家 400電話辦理的口碑 廊坊外呼系統(tǒng)在哪買 一個(gè)地圖標(biāo)注多少錢 地圖標(biāo)注工廠入駐 高碑店市地圖標(biāo)注app 四川穩(wěn)定外呼系統(tǒng)軟件 b2b外呼系統(tǒng) 臺(tái)灣電銷

基于項(xiàng)目需求, 我們要實(shí)現(xiàn)一個(gè)基于redis實(shí)現(xiàn)token登錄驗(yàn)證,該如何實(shí)現(xiàn)呢:

后端實(shí)現(xiàn):

1.引入redis相關(guān)的依賴

dependency>
 groupId>org.springframework.boot/groupId>
 artifactId>spring-boot-starter-data-redis/artifactId>
/dependency>
dependency>
 groupId>org.springframework.session/groupId>
 artifactId>spring-session-data-redis/artifactId>
 version>2.0.5.RELEASE/version>
/dependency>

2.Controller層生成token信息并存入redis中

//若用戶登錄驗(yàn)證成功后將對(duì)應(yīng)的登陸信息和登陸憑證一起存入redis中
//生成登陸憑證token UUID
String uuidToken= UUID.randomUUID().toString();
uuidToken=uuidToken.replace("-","");
 
//將token和用戶登錄態(tài)之間建立聯(lián)系
redisTemplate.opsForValue().set(uuidToken,userModel);
redisTemplate.expire(uuidToken,1, TimeUnit.HOURS);
 
// 下發(fā)token
return CommonReturnType.create(uuidToken);

3.需要驗(yàn)證的登陸的地方調(diào)用即可

 String token = httpServletRequest.getParameterMap().get("token")[0];
 if (StringUtils.isEmpty(token)) {
 throw new BusinessException(EmBusinessError.USER_NOT_LOGIN, "用戶還未登陸,不能下單");
 }
 //獲取用戶的登陸信息
 UserModel userModel= (UserModel) redisTemplate.opsForValue().get(token);
 if(userModel==null){
 throw new BusinessException(EmBusinessError.USER_NOT_LOGIN, "用戶還未登陸,不能下單");
 }
 
 OrderModel orderModel = orderService.creatOrder(userModel.getId(), itemId, promoId, amount);
 return CommonReturnType.create(null);

前端實(shí)現(xiàn)

1.從返回值中取出token并存入localstorage

if(data.status == "success") {
 alert("登陸成功");
 //取出token放入localstorage
 var token = data.data;
 window.localStorage["token"] = token;
 window.location.href = "listitem.html";
}

2.驗(yàn)證用戶是否登陸

var token = window.localStorage["token"];
 if(token == null){
 alert("沒有登錄,不能下單");
 window.location.href="login.html" rel="external nofollow" ;
 return false;
 } 

3.當(dāng)然,需要把token傳入后端再校驗(yàn)一次

url:"http://"+g_host+"/order/createorder?token="+token,

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • PHP+Redis 消息隊(duì)列 實(shí)現(xiàn)高并發(fā)下注冊(cè)人數(shù)統(tǒng)計(jì)的實(shí)例
  • 利用Redis統(tǒng)計(jì)網(wǎng)站在線活躍用戶的方法
  • PHP使用redis實(shí)現(xiàn)統(tǒng)計(jì)緩存mysql壓力的方法
  • Redis中統(tǒng)計(jì)各種數(shù)據(jù)大小的方法
  • redis 實(shí)現(xiàn)登陸次數(shù)限制的思路詳解
  • redis開啟和禁用登陸密碼校驗(yàn)的方法
  • 基于Redis位圖實(shí)現(xiàn)系統(tǒng)用戶登錄統(tǒng)計(jì)

標(biāo)簽:甘南 河源 定州 泰州 畢節(jié) 南寧 拉薩 伊春

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《基于redis實(shí)現(xiàn)token驗(yàn)證用戶是否登陸》,本文關(guān)鍵詞  基于,redis,實(shí)現(xiàn),token,驗(yàn)證,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《基于redis實(shí)現(xiàn)token驗(yàn)證用戶是否登陸》相關(guān)的同類信息!
  • 本頁收集關(guān)于基于redis實(shí)現(xiàn)token驗(yàn)證用戶是否登陸的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章