| | |
| | | Velocity.init(prop); |
| | | |
| | | //生成menu.xml文件 |
| | | Map<String, Map<String, List<MpkFileDTO>>> collect = entities.stream().collect(Collectors.groupingBy(MpkFileDTO::getMenuName, Collectors.groupingBy(e -> StringUtils.isNotBlank(e.getGroupName()) ? e.getGroupName() : "default_group"))); |
| | | LinkedHashMap<String, LinkedHashMap<String, List<MpkFileDTO>>> collect = entities.stream().collect(Collectors.groupingBy(MpkFileDTO::getMenuName, LinkedHashMap::new, Collectors.groupingBy(e -> StringUtils.isNotBlank(e.getGroupName()) ? e.getGroupName() : "default_group",LinkedHashMap::new,Collectors.toList()))); |
| | | Map<String, Object> map1 = new HashMap<>(); |
| | | map1.put("collects", collect); |
| | | File xmlFile = new File(dirPath.getAbsolutePath() + File.separator + "menu.xml"); |