溫馨提示×

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

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

Java怎么實(shí)現(xiàn)登錄token令牌

發(fā)布時(shí)間:2022-05-23 09:39:45 來(lái)源:億速云 閱讀:170 作者:zzz 欄目:開(kāi)發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“Java怎么實(shí)現(xiàn)登錄token令牌”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Java怎么實(shí)現(xiàn)登錄token令牌”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

一、流程圖

Java怎么實(shí)現(xiàn)登錄token令牌

二、Token

1、token是一種客戶(hù)端認(rèn)證機(jī)制,是一個(gè)經(jīng)過(guò)加密的字符串,安全性強(qiáng),支持跨域

2、用戶(hù)第一次登錄,服務(wù)器通過(guò)數(shù)據(jù)庫(kù)校驗(yàn)其UserId和Password合法,則再根據(jù)隨機(jī)數(shù)字+userid+當(dāng)前時(shí)間戳再經(jīng)過(guò)DES加密生成一個(gè)token串

  • 當(dāng)然具體生成token的方式是開(kāi)發(fā)自己定義的   

3、token的生成一般是采用uuid保證唯一性,當(dāng)用戶(hù)登錄時(shí)為其生成唯一的token,存儲(chǔ)一般保存在數(shù)據(jù)庫(kù)中

  • token過(guò)期時(shí)間采用把token二次保存在cookie或session里面,根據(jù)cookie和session的過(guò)期時(shí)間去維護(hù)token的過(guò)期時(shí)間

4、Token是在服務(wù)端產(chǎn)生的。如果前端使用用戶(hù)名/密碼向服務(wù)端請(qǐng)求認(rèn)證,服務(wù)端認(rèn)證成功,那么在服務(wù)端會(huì)返回Token給前端。前端可以在每次請(qǐng)求的時(shí)候帶上Token證明自己的合法地位

5、Token,就是令牌,最大的特點(diǎn)就是隨機(jī)性,不可預(yù)測(cè)。一般黑客或軟件無(wú)法猜測(cè)出來(lái)

三、分析

建立一個(gè)token令牌,在用戶(hù)登錄時(shí)候給用戶(hù)一個(gè)獨(dú)特得令牌值,登錄時(shí)候嘚賦值這個(gè)令牌

在SpringBoot項(xiàng)目中建立一個(gè)Util文件夾

文件夾下建立TokenUtil.java文件

public class TokenUtil {  
    private static Map<String, User> tokenMap = new HashMap<>();  
    public static String generateToken(User user){
        //生成唯一不重復(fù)的字符串
        String token = UUID.randomUUID().toString();
        tokenMap.put(token,user);
        return token;
    }
 
    /**
     * 驗(yàn)證token是否合法
     * @param token
     * @return
     */
    public static  boolean verify(String token){
        return tokenMap.containsKey(token);
    }
 
    public static User gentUser(String token){
        return tokenMap.get(token);
    }
 
    public static void main(String[] args) {
        for (int i = 0; i < 20; i++){
            System.out.println(UUID.randomUUID().toString());
        }
    } 
}

用戶(hù)登錄得UserController.java

@Api( tags = {"用戶(hù)模塊接口"})
@RestController
@RequestMapping("user")
public class UserController {
    @Autowired
    private UserService userService;
 
    @Autowired
    private HttpSession session;
    @ApiOperation("登錄接口")
    @RequestMapping(value = "login",method ={RequestMethod.POST,RequestMethod.GET})
    public Map<String,Object> login(User user){
        Map<String,Object> map = new HashMap<>();
        map.put("code",0);
        if(StringUtils.isEmpty(user.getUsername()) || StringUtils.isEmpty(user.getPassword()) ){
            map.put("msg","用戶(hù)或者密碼為空!");
            return map;
        }
        QueryWrapper<User> queryWrapper = new QueryWrapper<>();
        queryWrapper.eq("username",user.getUsername())
                .eq("password",user.getPassword());
        User userDb = userService.getOne(queryWrapper);
        if(userDb != null){
            String token= TokenUtil.generateToken(userDb);
            map.put("code",1);
            map.put("data",userDb);
            map.put("token",token);
            session.setAttribute("username",userDb.getUsername());
        }else{
            map.put("msg","用戶(hù)名或密碼錯(cuò)誤!");
        }
        return map;
    }
    @ApiImplicitParams(
            {
            @ApiImplicitParam(name = "id",
                    value = "用戶(hù)id", required = true,
                    dataType = "Long"),
            @ApiImplicitParam(name = "name",
                    value = "測(cè)試名字",
                    dataType = "string")
            }
    )
    @ApiOperation("根據(jù)id查詢(xún)用戶(hù)信息")
    @RequestMapping(value="getById",method ={RequestMethod.POST,RequestMethod.GET})
    public  User getById(Long id ,String name){
        System.out.println(name);
        return userService.getById(id);
    }
 
}

在攔截器上操作 interceptor下面LoginInterceptor.java

public class LoginInterceptor implements HandlerInterceptor {
 
    @Autowired
    private HttpSession httpSession;
 
    //Controller邏輯執(zhí)行之前
    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        System.out.println("preHandle....");
        String uri = request.getRequestURI();
        System.out.println("當(dāng)前路徑:"+uri);
        /**
         * HandlerMethod=>Controller中標(biāo)注@RequestMapping的方法
         *  需要配置靜態(tài)資源不攔截時(shí),添加這塊邏輯  => 前后端分離項(xiàng)目
         *
         */
        // 是我們的conrtoller中的方法
        if (!(handler instanceof HandlerMethod)) {
            return true;
        }
        String token = request.getHeader("qcby-token");
        if (!TokenUtil.verify(token)) {
            // 未登錄跳轉(zhuǎn)到登錄界面
           throw  new RuntimeException("no login!");
        } else {
            return true;
        }
    }
 
    //Controller邏輯執(zhí)行完畢但是視圖解析器還未進(jìn)行解析之前
    @Override
    public void postHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, ModelAndView modelAndView) throws Exception {
        System.out.println("postHandle....");
    }
 
    //Controller邏輯和視圖解析器執(zhí)行完畢
    @Override
    public void afterCompletion(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) throws Exception {
        System.out.println("afterCompletion....");
    }
}

四、運(yùn)行結(jié)果

http://localhost:8080/

Java怎么實(shí)現(xiàn)登錄token令牌

 http://localhost:8080/user/login?username=admin&password=123456

Java怎么實(shí)現(xiàn)登錄token令牌

 記住這個(gè)令牌    

60227b0e-bdbb-47d9-9df4-f56163cb529d

在postman中

Java怎么實(shí)現(xiàn)登錄token令牌

寫(xiě)入令牌,輸出成功

Java怎么實(shí)現(xiàn)登錄token令牌

讀到這里,這篇“Java怎么實(shí)現(xiàn)登錄token令牌”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(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