基于項(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ì)