EventDataManager.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.gzlh.bus;
  2. import cn.hutool.cache.CacheUtil;
  3. import cn.hutool.cache.impl.TimedCache;
  4. import cn.hutool.core.util.ReflectUtil;
  5. import cn.hutool.json.JSONUtil;
  6. import cn.hutool.log.StaticLog;
  7. import com.gzlh.config.SystemObject;
  8. import com.gzlh.entity.ReqBO;
  9. public class EventDataManager {
  10. private static final TimedCache<String, ReqBO> CACHE_MAP= CacheUtil.newTimedCache(20*60*1000);
  11. private static final String KEY="event_key";
  12. /**
  13. * 缓存
  14. * @param field
  15. * @param value
  16. */
  17. public static void cacheData(String field,Object value){
  18. ReqBO reqBO= CACHE_MAP.get(KEY);
  19. if (reqBO==null){
  20. reqBO=new ReqBO();
  21. reqBO.setDirection(1);
  22. }
  23. reqBO.setChannelCode(SystemObject.applicationConfig.getChannelCode());
  24. ReflectUtil.setFieldValue(reqBO,field,value);
  25. CACHE_MAP.put(KEY,reqBO);
  26. StaticLog.info("cache bo:{}", JSONUtil.toJsonStr(reqBO));
  27. }
  28. /**
  29. * 获取数据中心数据
  30. * @return
  31. */
  32. public static ReqBO getCacheData(){
  33. return CACHE_MAP.get(KEY);
  34. }
  35. /**
  36. * 清除掉缓存
  37. */
  38. public static void cleanData(){
  39. CACHE_MAP.clear();
  40. }
  41. }