code review ProjectReactor 的代码实现

This commit is contained in:
YunaiV 2022-03-30 21:54:45 +08:00
parent d9afb0e6c6
commit 5ac7c3bd5d

View File

@ -31,7 +31,7 @@ public class ProjectReactor {
String projectBaseDir = getProjectBaseDir();
// ========== 配置需要你手动修改 ==========
String groupIdNew = "cn.huwing.boot";
String groupIdNew = "cn.huwing.boot"; // TODO @seeker这几个参数改回去原来的哈
String artifactIdNew = "zdm";
String packageNameNew = "cn.huwing.zdm";
String titleNew = "测试名管理系统";
@ -47,8 +47,8 @@ public class ProjectReactor {
String content = replaceFileContent(file, groupIdNew, artifactIdNew, packageNameNew, titleNew);
writeFile(file, content, projectBaseDir, projectBaseDirNew, packageNameNew, artifactIdNew);
});
long end = System.currentTimeMillis();
log.info("[main][重写完成]共耗时:" + (end - start) / 1000 + "");
long end = System.currentTimeMillis(); // TODO @seeker直接减不用增加变量
log.info("[main][重写完成]共耗时:" + (end - start) / 1000 + ""); // TODO @seekerlogger 不要拼接字符串用占位符
}
private static String getProjectBaseDir() {
@ -59,7 +59,7 @@ public class ProjectReactor {
Collection<File> files = FileUtils.listFiles(new File(projectBaseDir), null, true);
// 移除 IDEA Git GitHub 自身的文件; Node 编译出来的文件
files = files.stream()
.filter(file -> !file.getPath().contains("\\target\\")
.filter(file -> !file.getPath().contains("\\target\\") // TODO @seeker使用 File.separator也要考虑 mac
&& !file.getPath().contains("\\node_modules\\")
&& !file.getPath().contains("\\.idea\\")
&& !file.getPath().contains("\\.git\\")
@ -91,4 +91,4 @@ public class ProjectReactor {
.replaceAll(StrUtil.upperFirst(ARTIFACT_ID), StrUtil.upperFirst(artifactIdNew));
FileUtil.writeUtf8String(fileContent, newPath);
}
}
}