CacheContext.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package cn.gyee.tamplate.init;
  2. import cn.gyee.tamplate.model.WindPowerStationTestingPoint2;
  3. import cn.gyee.tamplate.model.auto.*;
  4. import cn.gyee.tamplate.service.*;
  5. import cn.gyee.tamplate.util.common.StringUtils;
  6. import lombok.val;
  7. import org.slf4j.Logger;
  8. import org.slf4j.LoggerFactory;
  9. import org.springframework.boot.CommandLineRunner;
  10. import org.springframework.stereotype.Component;
  11. import javax.annotation.Resource;
  12. import java.util.*;
  13. import java.util.stream.Collectors;
  14. /**
  15. * @ClassName : CacheContext
  16. * @Author : xieshengjie
  17. * @Date: 2021/1/18 14:48
  18. * @Description : 初始化资源
  19. */
  20. @Component
  21. public class CacheContext implements CommandLineRunner {
  22. private Logger logger= LoggerFactory.getLogger(CacheContext.class);
  23. @Resource
  24. private IWindturbinetestingpointai2Service windturbinetestingpointai2Service;
  25. @Resource
  26. private IWindpowerstationtestingpoint2Service windpowerstationtestingpoint2Service;
  27. @Resource
  28. private IProjectService projectService;
  29. @Resource
  30. private IWindpowerstationService windpowerstationService;
  31. @Resource
  32. private IMeterpoint2Service meterpoint2Service;
  33. @Resource
  34. private IAnalysiswindtargetService analysiswindtargetService;
  35. public static Map<String, Map<String, Windturbinetestingpointai2>> wtpointMap = new HashMap<>();
  36. public static Map<String,List<Windturbinetestingpointai2>> wtpmap = new HashMap<>();
  37. public static Map<String,Map<String, Windpowerstationtestingpoint2>> wppointmap =new HashMap<>();
  38. public static List<Project> projects = new ArrayList<>();
  39. public static List<Windpowerstation> stations = new ArrayList<>();
  40. public static Map<String,Windpowerstation> wpmaps = new HashMap<>();
  41. public static Map<String,String> wpmap = new HashMap<>();
  42. public static Map<String,Meterpoint2> meterMap = new HashMap<>();
  43. public static Map<String,List<Meterpoint2>> wpmeterMap = new HashMap<>();
  44. public static List<Analysiswindtarget> targetlist = new ArrayList<>();
  45. public static Map<String,Project> projectMap = new HashMap<>();
  46. @Override
  47. public void run(String... args) throws Exception {
  48. targetlist = analysiswindtargetService.list();
  49. for (Meterpoint2 meterpoint2 : meterpoint2Service.list()) {
  50. meterMap.put(meterpoint2.getId(),meterpoint2);
  51. if (wpmeterMap.containsKey(meterpoint2.getWindpowerstationid())){
  52. wpmeterMap.get(meterpoint2.getWindpowerstationid()).add(meterpoint2);
  53. }else{
  54. List<Meterpoint2> list = new ArrayList<>();
  55. list.add(meterpoint2);
  56. wpmeterMap.put(meterpoint2.getWindpowerstationid(),list);
  57. }
  58. }
  59. projects = projectService.list().stream().sorted(Comparator.comparing(Project::getOrdernum)).collect(Collectors.toList());
  60. for (Project project : projects) {
  61. projectMap.put(project.getId(),project);
  62. }
  63. stations = windpowerstationService.list();
  64. for (Windpowerstation station : stations) {
  65. wpmap.put(station.getId(),station.getName());
  66. wpmaps.put(station.getId(),station);
  67. }
  68. List<Windturbinetestingpointai2> wtplist = windturbinetestingpointai2Service.list();
  69. for (Windturbinetestingpointai2 pointai : wtplist) {
  70. if (wtpointMap.containsKey(pointai.getWindturbineid())){
  71. wtpointMap.get(pointai.getWindturbineid()).put(pointai.getUniformcode(),pointai);
  72. }else{
  73. Map<String, Windturbinetestingpointai2> map = new HashMap<>();
  74. map.put(pointai.getUniformcode(),pointai);
  75. wtpointMap.put(pointai.getWindturbineid(),map);
  76. }
  77. }
  78. //----------------------------------------------------------------------------------------------------
  79. List<Windpowerstationtestingpoint2> wplist = windpowerstationtestingpoint2Service.list();
  80. for (Windpowerstationtestingpoint2 windpowerstationtestingpoint2 : wplist) {
  81. if (wppointmap.containsKey(windpowerstationtestingpoint2.getWindpowerstationid())){
  82. wppointmap.get(windpowerstationtestingpoint2.getWindpowerstationid()).put(windpowerstationtestingpoint2.getUniformcode(),windpowerstationtestingpoint2);
  83. }else{
  84. Map<String,Windpowerstationtestingpoint2> map = new HashMap<>();
  85. map.put(windpowerstationtestingpoint2.getUniformcode(),windpowerstationtestingpoint2);
  86. wppointmap.put(windpowerstationtestingpoint2.getWindpowerstationid(),map);
  87. }
  88. }
  89. }
  90. }