java 生成 token_Java实现token的生成与验证

这篇博客对比了token与cookie的区别,强调了token在跨域、无状态化、安全性等方面的优势。接着,详细介绍了如何使用Java JWT库生成和验证JSON Web Token(JWT)。通过设置密钥、生存时间和实现签名方法,展示了完整的Token工具类代码,包括生成和验证token的函数。
摘要由CSDN通过智能技术生成

一、token与cookie相比较的优势

1、支持跨域访问,将token置于请求头中,而cookie是不支持跨域访问的;

2、无状态化,服务端无需存储token,只需要验证token信息是否正确即可,而session需要在服务端存储,一般是通过cookie中的sessionID在服务端查找对应的session;

3、无需绑定到一个特殊的身份验证方案(传统的用户名密码登陆),只需要生成的token是符合我们预期设定的即可;

4、更适用于移动端(Android,iOS,小程序等等),像这种原生平台不支持cookie,比如说微信小程序,每一次请求都是一次会话,当然我们可以每次去手动为他添加cookie,详情请查看博主另一篇博客;

5、避免CSRF跨站伪造攻击,还是因为不依赖cookie;

二、基于JWT的token认证实现

JWT:JSON Web Token,其实token就是一段字符串,由三部分组成:Header,Payload,Signature

1、引入依赖

com.auth0

java-jwt

3.8.2

2、设置密钥和生存时间

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

//设置过期时间

private static final long EXPIRE_DATE=30*60*100000;//token秘钥

private static final String TOKEN_SECRET = "ZCEQIUBFKSJBFJH2020BQWE";

View Code

3、实现签名方法

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

public staticString token (String username,String password){

String token= "";try{//过期时间

Date date = new Date(System.currentTimeMillis()+EXPIRE_DATE);//秘钥及加密算法

Algorithm algorithm =Algorithm.HMAC256(TOKEN_SECRET);//设置头部信息

Map header = new HashMap<>();

header.put("typ","JWT");

header.put("alg","HS256");//携带username,password信息,生成签名

token =JWT.create()

.withHeader(header)

.withClaim("username",username)

.withClaim("password",password).withExpiresAt(date)

.sign(algorithm);

}catch(Exception e){

e.printStackTrace();return null;

}returntoken;

}

View Code

4、验证token

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

public static booleanverify(String token){/*** @desc 验证token,通过返回true

* @create 2019/1/18/018 9:39

* @params [token]需要校验的串

**/

try{

Algorithm algorithm=Algorithm.HMAC256(TOKEN_SECRET);

JWTVerifier verifier=JWT.require(algorithm).build();

DecodedJWT jwt=verifier.verify(token);return true;

}catch(Exception e){

e.printStackTrace();return false;

}

}

View Code

5、测试

1)、直接用生成的token去验证,成功

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

public static voidmain(String[] args) {

String username="zhangsan";

String password= "123";

String token=token(username,password);

System.out.println(token);boolean b =verify(token);

System.out.println(b);

}

View Code

3dcd9db9c7721de7a54cb834d2b1ca22.png

三、完整的Token工具类代码

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

package xxx.utils; //你的包

importcom.auth0.jwt.JWT;importcom.auth0.jwt.JWTVerifier;importcom.auth0.jwt.algorithms.Algorithm;importcom.auth0.jwt.interfaces.DecodedJWT;importjava.util.Date;importjava.util.HashMap;importjava.util.Map;/*** @desc 使用token验证用户是否登录

*@authorzm

**/

public classTokenUtils {//设置过期时间

private static final long EXPIRE_DATE=30*60*100000;//token秘钥

private static final String TOKEN_SECRET = "ZCfasfhuaUUHufguGuwu2020BQWE";public staticString token (String username,String password){

String token= "";try{//过期时间

Date date = new Date(System.currentTimeMillis()+EXPIRE_DATE);//秘钥及加密算法

Algorithm algorithm =Algorithm.HMAC256(TOKEN_SECRET);//设置头部信息

Map header = new HashMap<>();

header.put("typ","JWT");

header.put("alg","HS256");//携带username,password信息,生成签名

token =JWT.create()

.withHeader(header)

.withClaim("username",username)

.withClaim("password",password).withExpiresAt(date)

.sign(algorithm);

}catch(Exception e){

e.printStackTrace();return null;

}returntoken;

}public static booleanverify(String token){/*** @desc 验证token,通过返回true

* @params [token]需要校验的串

**/

try{

Algorithm algorithm=Algorithm.HMAC256(TOKEN_SECRET);

JWTVerifier verifier=JWT.require(algorithm).build();

DecodedJWT jwt=verifier.verify(token);return true;

}catch(Exception e){

e.printStackTrace();return false;

}

}public static voidmain(String[] args) {

String username="zhangsan";

String password= "123";

String token=token(username,password);

System.out.println(token);boolean b = verify("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwYXNzd22yZCI6IjEyMyIsImV4cCI6MTU3ODE5NzQxMywidXNlcm5hbWUiOiJ6aGFuZ3NhbiJ9.IyTZT0tISQQZhGhsNuaqHGV8LD7idjUYjn3MGbulmJg");

System.out.println(b);

}

}

View Code

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值