DictUtils.java 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package com.ruoyi.common.utils;
  2. import java.util.Collection;
  3. import java.util.List;
  4. import com.ruoyi.common.constant.Constants;
  5. import com.ruoyi.common.core.domain.entity.SysDictData;
  6. import com.ruoyi.common.core.redis.RedisCache;
  7. import com.ruoyi.common.utils.spring.SpringUtils;
  8. /**
  9. * 字典工具类
  10. *
  11. * @author ruoyi
  12. */
  13. public class DictUtils
  14. {
  15. /**
  16. * 分隔符
  17. */
  18. public static final String SEPARATOR = ",";
  19. /**
  20. * 设置字典缓存
  21. *
  22. * @param key 参数键
  23. * @param dictDatas 字典数据列表
  24. */
  25. public static void setDictCache(String key, List<SysDictData> dictDatas)
  26. {
  27. SpringUtils.getBean(RedisCache.class).setCacheObject(getCacheKey(key), dictDatas);
  28. }
  29. /**
  30. * 获取字典缓存
  31. *
  32. * @param key 参数键
  33. * @return dictDatas 字典数据列表
  34. */
  35. public static List<SysDictData> getDictCache(String key)
  36. {
  37. Object cacheObj = SpringUtils.getBean(RedisCache.class).getCacheObject(getCacheKey(key));
  38. if (StringUtils.isNotNull(cacheObj))
  39. {
  40. List<SysDictData> dictDatas = StringUtils.cast(cacheObj);
  41. return dictDatas;
  42. }
  43. return null;
  44. }
  45. /**
  46. * 根据字典类型和字典值获取字典标签
  47. *
  48. * @param dictType 字典类型
  49. * @param dictValue 字典值
  50. * @return 字典标签
  51. */
  52. public static String getDictLabel(String dictType, String dictValue)
  53. {
  54. return getDictLabel(dictType, dictValue, SEPARATOR);
  55. }
  56. /**
  57. * 根据字典类型和字典标签获取字典值
  58. *
  59. * @param dictType 字典类型
  60. * @param dictLabel 字典标签
  61. * @return 字典值
  62. */
  63. public static String getDictValue(String dictType, String dictLabel)
  64. {
  65. return getDictValue(dictType, dictLabel, SEPARATOR);
  66. }
  67. /**
  68. * 根据字典类型和字典值获取字典标签
  69. *
  70. * @param dictType 字典类型
  71. * @param dictValue 字典值
  72. * @param separator 分隔符
  73. * @return 字典标签
  74. */
  75. public static String getDictLabel(String dictType, String dictValue, String separator)
  76. {
  77. StringBuilder propertyString = new StringBuilder();
  78. List<SysDictData> datas = getDictCache(dictType);
  79. if (StringUtils.containsAny(separator, dictValue) && StringUtils.isNotEmpty(datas))
  80. {
  81. for (SysDictData dict : datas)
  82. {
  83. for (String value : dictValue.split(separator))
  84. {
  85. if (value.equals(dict.getDictValue()))
  86. {
  87. propertyString.append(dict.getDictLabel() + separator);
  88. break;
  89. }
  90. }
  91. }
  92. }
  93. else
  94. {
  95. for (SysDictData dict : datas)
  96. {
  97. if (dictValue.equals(dict.getDictValue()))
  98. {
  99. return dict.getDictLabel();
  100. }
  101. }
  102. }
  103. return StringUtils.stripEnd(propertyString.toString(), separator);
  104. }
  105. /**
  106. * 根据字典类型和字典标签获取字典值
  107. *
  108. * @param dictType 字典类型
  109. * @param dictLabel 字典标签
  110. * @param separator 分隔符
  111. * @return 字典值
  112. */
  113. public static String getDictValue(String dictType, String dictLabel, String separator)
  114. {
  115. StringBuilder propertyString = new StringBuilder();
  116. List<SysDictData> datas = getDictCache(dictType);
  117. if (StringUtils.containsAny(separator, dictLabel) && StringUtils.isNotEmpty(datas))
  118. {
  119. for (SysDictData dict : datas)
  120. {
  121. for (String label : dictLabel.split(separator))
  122. {
  123. if (label.equals(dict.getDictLabel()))
  124. {
  125. propertyString.append(dict.getDictValue() + separator);
  126. break;
  127. }
  128. }
  129. }
  130. }
  131. else
  132. {
  133. for (SysDictData dict : datas)
  134. {
  135. if (dictLabel.equals(dict.getDictLabel()))
  136. {
  137. return dict.getDictValue();
  138. }
  139. }
  140. }
  141. return StringUtils.stripEnd(propertyString.toString(), separator);
  142. }
  143. /**
  144. * 清空字典缓存
  145. */
  146. public static void clearDictCache()
  147. {
  148. Collection<String> keys = SpringUtils.getBean(RedisCache.class).keys(Constants.SYS_DICT_KEY + "*");
  149. SpringUtils.getBean(RedisCache.class).deleteObject(keys);
  150. }
  151. /**
  152. * 设置cache key
  153. *
  154. * @param configKey 参数键
  155. * @return 缓存键key
  156. */
  157. public static String getCacheKey(String configKey)
  158. {
  159. return Constants.SYS_DICT_KEY + configKey;
  160. }
  161. }