123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package com.ruoyi.common.constant;
- import io.jsonwebtoken.Claims;
- /**
- * 通用常量信息
- *
- * @author ruoyi
- */
- public class Constants
- {
- /**
- * UTF-8 字符集
- */
- public static final String UTF8 = "UTF-8";
- /**
- * GBK 字符集
- */
- public static final String GBK = "GBK";
- /**
- * http请求
- */
- public static final String HTTP = "http://";
- /**
- * https请求
- */
- public static final String HTTPS = "https://";
- /**
- * 通用成功标识
- */
- public static final String SUCCESS = "0";
- /**
- * 通用失败标识
- */
- public static final String FAIL = "1";
- /**
- * 登录成功
- */
- public static final String LOGIN_SUCCESS = "Success";
- /**
- * 注销
- */
- public static final String LOGOUT = "Logout";
- /**
- * 注册
- */
- public static final String REGISTER = "Register";
- /**
- * 登录失败
- */
- public static final String LOGIN_FAIL = "Error";
- /**
- * 验证码 redis key
- */
- public static final String CAPTCHA_CODE_KEY = "captcha_codes:";
- /**
- * 登录用户 redis key
- */
- public static final String LOGIN_TOKEN_KEY = "login_tokens:";
- /**
- * 防重提交 redis key
- */
- public static final String REPEAT_SUBMIT_KEY = "repeat_submit:";
- /**
- * 限流 redis key
- */
- public static final String RATE_LIMIT_KEY = "rate_limit:";
- /**
- * 验证码有效期(分钟)
- */
- public static final Integer CAPTCHA_EXPIRATION = 2;
- /**
- * 令牌
- */
- public static final String TOKEN = "token";
- /**
- * 令牌前缀
- */
- public static final String TOKEN_PREFIX = "Bearer ";
- /**
- * 令牌前缀
- */
- public static final String LOGIN_USER_KEY = "login_user_key";
- /**
- * 用户ID
- */
- public static final String JWT_USERID = "userid";
- /**
- * 用户名称
- */
- public static final String JWT_USERNAME = Claims.SUBJECT;
- /**
- * 用户头像
- */
- public static final String JWT_AVATAR = "avatar";
- /**
- * 创建时间
- */
- public static final String JWT_CREATED = "created";
- /**
- * 用户权限
- */
- public static final String JWT_AUTHORITIES = "authorities";
- /**
- * 参数管理 cache key
- */
- public static final String SYS_CONFIG_KEY = "sys_config:";
- /**
- * 字典管理 cache key
- */
- public static final String SYS_DICT_KEY = "sys_dict:";
- /**
- * 资源映射路径 前缀
- */
- public static final String RESOURCE_PREFIX = "/profile";
- /**
- * RMI 远程方法调用
- */
- public static final String LOOKUP_RMI = "rmi:";
- /**
- * LDAP 远程方法调用
- */
- public static final String LOOKUP_LDAP = "ldap:";
- /**
- * LDAPS 远程方法调用
- */
- public static final String LOOKUP_LDAPS = "ldaps:";
- /**
- * 定时任务白名单配置(仅允许访问的包名,如其他需要可以自行添加)
- */
- public static final String[] JOB_WHITELIST_STR = { "com.ruoyi" };
- /**
- * 令牌有效期(分钟)
- */
- public final static long TOKEN_EXPIRE = 120;
- /**
- * 授权成功
- */
- public static final Integer EMPOWER = 201;
- /**
- * 成功标记
- */
- public static final Integer SUCCESS_QR = 200;
- /**
- * 失败标记
- */
- public static final Integer FAIL_QR = 500;
- /**
- * 登录状态失效
- */
- public static final Integer LOGIN_EXPIRE = 401;
- /**
- * 扫码登录成功
- */
- public static final String LOGIN_SUCCESS_APP = "login_success:";
- /**
- * 定时任务违规的字符
- */
- public static final String[] JOB_ERROR_STR = { "java.net.URL", "javax.naming.InitialContext", "org.yaml.snakeyaml",
- "org.springframework", "org.apache", "com.ruoyi.common.utils.file" };
- }
|