remove logs

pull/445/head
wei 2025-09-03 11:35:32 +08:00
parent ee43ab0090
commit 127aaf648f
1 changed files with 0 additions and 2 deletions

View File

@ -71,8 +71,6 @@ public class TokenService
int now = Math.toIntExact(System.currentTimeMillis() / 1000);
claimsMap.put(SecurityConstants.DETAILS_IAT,now);
claimsMap.put(SecurityConstants.DETAILS_EXP,now+TOKEN_EXPIRE_TIME*60);
System.out.println("token");
System.out.println(JSON.toJSONString(claimsMap));
// 接口返回信息
Map<String, Object> rspMap = new HashMap<String, Object>();
rspMap.put("access_token", JwtUtils.createToken(claimsMap));