| | |
| | | import org.apache.velocity.VelocityContext; |
| | | import org.apache.velocity.app.Velocity; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.CollectionUtils; |
| | |
| | | @Autowired |
| | | private ConfigApi configApi; |
| | | |
| | | @Value("${mpk.bakFilePath}") |
| | | private String mpkBakFilePath; |
| | | |
| | | @PostConstruct |
| | | /*@PostConstruct |
| | | public void init() { |
| | | mpkBakFilePath = configApi.getConfigValueByKey("mpkBakFilePath").getCheckedData(); |
| | | } |
| | | }*/ |
| | | |
| | | @Override |
| | | public PageData<MpkFileDTO> page(Map<String, Object> params) { |
| | |
| | | prop.put("file.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader"); |
| | | 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"))); |
| | | Map<String, Object> map1 = new HashMap<>(); |
| | | map1.put("collects",collect); |
| | | File xmlFile = new File(dirPath.getAbsolutePath() + File.separator + "menu.xml"); |
| | | GenUtils.drawTemplate("menu.xml.vm",new VelocityContext(map1),xmlFile); |
| | | |
| | | //生成cpp文件 |
| | | File cppFile = new File(dirPath.getAbsolutePath() + File.separator + UUID.randomUUID() + ".cpp"); |
| | | GenUtils.drawTemplate("pkg.cpp.vm",context,cppFile); |
| | |
| | | entity.setProjectId(projectId); |
| | | entity.setPackageHistoryId(historyId); |
| | | entity.setPyName(e.getPyName()); |
| | | entity.setPyChineseName(e.getPyChineseName()); |
| | | entity.setPkgName(e.getPkgName()); |
| | | entity.setPyModule(e.getPyModule()); |
| | | entity.setRemark(e.getRemark()); |