Constants.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package com.ruoyi.common.constant;
  2. /**
  3. * 通用常量信息
  4. *
  5. * @author ruoyi
  6. */
  7. public class Constants
  8. {
  9. /**
  10. * UTF-8 字符集
  11. */
  12. public static final String UTF8 = "UTF-8";
  13. /**
  14. * GBK 字符集
  15. */
  16. public static final String GBK = "GBK";
  17. /**
  18. * http请求
  19. */
  20. public static final String HTTP = "http://";
  21. /**
  22. * https请求
  23. */
  24. public static final String HTTPS = "https://";
  25. /**
  26. * 通用成功标识
  27. */
  28. public static final String SUCCESS = "0";
  29. /**
  30. * 通用失败标识
  31. */
  32. public static final String FAIL = "1";
  33. /**
  34. * 登录成功
  35. */
  36. public static final String LOGIN_SUCCESS = "Success";
  37. /**
  38. * 注销
  39. */
  40. public static final String LOGOUT = "Logout";
  41. /**
  42. * 登录失败
  43. */
  44. public static final String LOGIN_FAIL = "Error";
  45. /**
  46. * 验证码 redis key
  47. */
  48. public static final String CAPTCHA_CODE_KEY = "captcha_codes:";
  49. /**
  50. * 登录用户 redis key
  51. */
  52. public static final String LOGIN_TOKEN_KEY = "login_tokens:";
  53. /**
  54. * 防重提交 redis key
  55. */
  56. public static final String REPEAT_SUBMIT_KEY = "repeat_submit:";
  57. /**
  58. * 验证码有效期(分钟)
  59. */
  60. public static final Integer CAPTCHA_EXPIRATION = 2;
  61. /**
  62. * 令牌
  63. */
  64. public static final String TOKEN = "token";
  65. /**
  66. * 令牌前缀
  67. */
  68. public static final String TOKEN_PREFIX = "Bearer ";
  69. /**
  70. * 令牌前缀
  71. */
  72. public static final String LOGIN_USER_KEY = "login_user_key";
  73. /**
  74. * 用户ID
  75. */
  76. public static final String JWT_USERID = "userid";
  77. /**
  78. * 用户名称
  79. */
  80. public static final String JWT_USERNAME = "sub";
  81. /**
  82. * 用户头像
  83. */
  84. public static final String JWT_AVATAR = "avatar";
  85. /**
  86. * 创建时间
  87. */
  88. public static final String JWT_CREATED = "created";
  89. /**
  90. * 用户权限
  91. */
  92. public static final String JWT_AUTHORITIES = "authorities";
  93. /**
  94. * 参数管理 cache key
  95. */
  96. public static final String SYS_CONFIG_KEY = "sys_config:";
  97. /**
  98. * 字典管理 cache key
  99. */
  100. public static final String SYS_DICT_KEY = "sys_dict:";
  101. /**
  102. * 资源映射路径 前缀
  103. */
  104. public static final String RESOURCE_PREFIX = "/profile";
  105. }