2022-03-09 00:27:26 +08:00
|
|
|
|
package cn.iocoder.yudao;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.io.FileUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.apache.commons.io.FileUtils;
|
|
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
|
|
import java.util.Collection;
|
2022-03-30 10:08:55 +08:00
|
|
|
|
import java.util.regex.Matcher;
|
2022-03-30 16:15:08 +08:00
|
|
|
|
import java.util.stream.Collectors;
|
2022-03-09 00:27:26 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 项目修改器,一键替换 Maven 的 groupId、artifactId,项目的 package 等
|
2022-03-30 10:08:55 +08:00
|
|
|
|
* <p>
|
2022-03-09 00:27:26 +08:00
|
|
|
|
* 通过修改 groupIdNew、artifactIdNew、projectBaseDirNew 三个变量
|
|
|
|
|
*
|
|
|
|
|
* @author 芋道源码
|
|
|
|
|
*/
|
|
|
|
|
@Slf4j
|
|
|
|
|
public class ProjectReactor {
|
|
|
|
|
|
|
|
|
|
private static final String GROUP_ID = "cn.iocoder.boot";
|
|
|
|
|
private static final String ARTIFACT_ID = "yudao";
|
|
|
|
|
private static final String PACKAGE_NAME = "cn.iocoder.yudao";
|
2022-03-30 16:41:40 +08:00
|
|
|
|
private static final String TITLE = "芋道管理系统";
|
2022-03-09 00:27:26 +08:00
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2022-03-30 10:08:55 +08:00
|
|
|
|
long start = System.currentTimeMillis();
|
2022-03-09 00:27:26 +08:00
|
|
|
|
String projectBaseDir = getProjectBaseDir();
|
2022-03-27 13:09:12 +08:00
|
|
|
|
|
2022-03-09 00:27:26 +08:00
|
|
|
|
// ========== 配置,需要你手动修改 ==========
|
2022-03-30 10:08:55 +08:00
|
|
|
|
String groupIdNew = "cn.huwing.boot";
|
|
|
|
|
String artifactIdNew = "zdm";
|
|
|
|
|
String packageNameNew = "cn.huwing.zdm";
|
2022-03-30 18:09:51 +08:00
|
|
|
|
String titleNew = "测试名管理系统";
|
2022-03-27 13:09:12 +08:00
|
|
|
|
String projectBaseDirNew = projectBaseDir + "-new"; // 一键改名后,“新”项目所在的目录
|
2022-03-30 10:08:55 +08:00
|
|
|
|
log.info("[main][新项目路径地址]projectBaseDirNew: " + projectBaseDirNew);
|
2022-03-09 00:27:26 +08:00
|
|
|
|
|
|
|
|
|
// 获得需要复制的文件
|
|
|
|
|
log.info("[main][开始获得需要重写的文件]");
|
|
|
|
|
Collection<File> files = listFiles(projectBaseDir);
|
2022-03-30 16:15:08 +08:00
|
|
|
|
log.info("[main][需要重写的文件数量:{},预计需要 5-10 秒]", files.size());
|
2022-03-09 00:27:26 +08:00
|
|
|
|
// 写入文件
|
|
|
|
|
files.forEach(file -> {
|
2022-03-27 13:09:12 +08:00
|
|
|
|
String content = replaceFileContent(file, groupIdNew, artifactIdNew, packageNameNew, titleNew);
|
2022-03-09 00:27:26 +08:00
|
|
|
|
writeFile(file, content, projectBaseDir, projectBaseDirNew, packageNameNew, artifactIdNew);
|
|
|
|
|
});
|
2022-03-30 10:08:55 +08:00
|
|
|
|
long end = System.currentTimeMillis();
|
|
|
|
|
log.info("[main][重写完成]共耗时:" + (end - start) / 1000 + "秒");
|
2022-03-09 00:27:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static String getProjectBaseDir() {
|
2022-03-30 10:08:55 +08:00
|
|
|
|
return StrUtil.subBefore(new File(ProjectReactor.class.getClassLoader().getResource(File.separator).getFile()).getPath(), "\\yudao-server", false);
|
2022-03-09 00:27:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static Collection<File> listFiles(String projectBaseDir) {
|
|
|
|
|
Collection<File> files = FileUtils.listFiles(new File(projectBaseDir), null, true);
|
2022-03-30 16:15:08 +08:00
|
|
|
|
// 移除 IDEA Git GitHub 自身的文件; Node 编译出来的文件
|
|
|
|
|
files = files.stream()
|
|
|
|
|
.filter(file -> !file.getPath().contains("\\target\\")
|
|
|
|
|
&& !file.getPath().contains("\\node_modules\\")
|
|
|
|
|
&& !file.getPath().contains("\\.idea\\")
|
|
|
|
|
&& !file.getPath().contains("\\.git\\")
|
|
|
|
|
&& !file.getPath().contains("\\.github\\")
|
2022-03-30 16:22:57 +08:00
|
|
|
|
&& !file.getPath().contains("\\dist\\")
|
2022-03-30 18:09:51 +08:00
|
|
|
|
&& !file.getPath().contains(".iml")
|
|
|
|
|
&& !file.getPath().contains(".html.gz"))
|
2022-03-30 16:15:08 +08:00
|
|
|
|
.collect(Collectors.toList());
|
2022-03-09 00:27:26 +08:00
|
|
|
|
return files;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static String replaceFileContent(File file, String groupIdNew,
|
2022-03-27 13:09:12 +08:00
|
|
|
|
String artifactIdNew, String packageNameNew,
|
|
|
|
|
String titleNew) {
|
2022-03-09 00:27:26 +08:00
|
|
|
|
return FileUtil.readString(file, StandardCharsets.UTF_8)
|
|
|
|
|
.replaceAll(GROUP_ID, groupIdNew)
|
|
|
|
|
.replaceAll(PACKAGE_NAME, packageNameNew)
|
|
|
|
|
.replaceAll(ARTIFACT_ID, artifactIdNew) // 必须放在最后替换,因为 ARTIFACT_ID 太短!
|
2022-03-27 13:09:12 +08:00
|
|
|
|
.replaceAll(StrUtil.upperFirst(ARTIFACT_ID), StrUtil.upperFirst(artifactIdNew))
|
|
|
|
|
.replaceAll(TITLE, titleNew);
|
2022-03-09 00:27:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void writeFile(File file, String fileContent, String projectBaseDir,
|
|
|
|
|
String projectBaseDirNew, String packageNameNew, String artifactIdNew) {
|
|
|
|
|
String newPath = file.getPath().replace(projectBaseDir, projectBaseDirNew) // 新目录
|
2022-03-30 10:08:55 +08:00
|
|
|
|
.replace(PACKAGE_NAME.replaceAll("\\.", Matcher.quoteReplacement(File.separator)),
|
|
|
|
|
packageNameNew.replaceAll("\\.", Matcher.quoteReplacement(File.separator)))
|
2022-03-09 00:27:26 +08:00
|
|
|
|
.replace(ARTIFACT_ID, artifactIdNew) //
|
|
|
|
|
.replaceAll(StrUtil.upperFirst(ARTIFACT_ID), StrUtil.upperFirst(artifactIdNew));
|
|
|
|
|
FileUtil.writeUtf8String(fileContent, newPath);
|
|
|
|
|
}
|
2022-03-30 10:08:55 +08:00
|
|
|
|
}
|