30 lines
519 B
Java
30 lines
519 B
Java
package com.bwie.common.constants;
|
|
|
|
/**
|
|
* @author DongZl
|
|
* @description: Jwt常量
|
|
*/
|
|
public class JwtConstants {
|
|
|
|
/**
|
|
* 用户ID字段
|
|
*/
|
|
public static final String DETAILS_USER_ID = "user_id";
|
|
|
|
/**
|
|
* 用户名字段
|
|
*/
|
|
public static final String DETAILS_USERNAME = "username";
|
|
|
|
/**
|
|
* 用户标识
|
|
*/
|
|
public static final String USER_KEY = "user_key";
|
|
|
|
/**
|
|
* 令牌秘钥
|
|
*/
|
|
public final static String SECRET = "abcdefghijklmnopqrstuvwxyz";
|
|
|
|
}
|