说明文档修订

This commit is contained in:
xiongfeng
2023-12-07 10:27:33 +08:00
parent 67bf832c4a
commit a9b57a181d
3 changed files with 24 additions and 5 deletions

View File

@@ -60,8 +60,8 @@ public class JwtTokenUtils {
// build token
// param backups {iss:Service, aud:APP}
String token = JWT.create().withHeader(map)
.withClaim("iss", "ll-app-business")
.withClaim("aud", "APP")
.withClaim("iss", "xf-boot-base")
.withClaim("aud", "demo")
.withClaim(USER_ID, String.valueOf(userId))
.withIssuedAt(iatDate)
// .withExpiresAt(expiresDate)

View File

@@ -16,7 +16,7 @@ import java.util.Map;
/**
* @program: xf-boot-base
* @ClassName RSAUtils
* @description:
* @description: 加密工具类
* @author: xiongfeng
* @create: 2022-06-20 10:37
**/