mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 18:28:43 +08:00 
			
		
		
		
	修复 ProjectReactor 一键改包的报错
This commit is contained in:
		| @@ -66,7 +66,7 @@ public class ProjectReactor { | ||||
|         // 写入文件 | ||||
|         files.forEach(file -> { | ||||
|             // 如果是白名单的文件类型,不进行重写,直接拷贝 | ||||
|             String fileType = FileTypeUtil.getType(file); | ||||
|             String fileType = getFileType(file); | ||||
|             if (WHITE_FILE_TYPES.contains(fileType)) { | ||||
|                 copyFile(file, projectBaseDir, projectBaseDirNew, packageNameNew, artifactIdNew); | ||||
|                 return; | ||||
| @@ -106,7 +106,7 @@ public class ProjectReactor { | ||||
|                                              String titleNew) { | ||||
|         String content = FileUtil.readString(file, StandardCharsets.UTF_8); | ||||
|         // 如果是白名单的文件类型,不进行重写 | ||||
|         String fileType = FileTypeUtil.getType(file); | ||||
|         String fileType = getFileType(file); | ||||
|         if (WHITE_FILE_TYPES.contains(fileType)) { | ||||
|             return content; | ||||
|         } | ||||
| @@ -139,4 +139,8 @@ public class ProjectReactor { | ||||
|                 .replaceAll(StrUtil.upperFirst(ARTIFACT_ID), StrUtil.upperFirst(artifactIdNew)); | ||||
|     } | ||||
|  | ||||
|     private static String getFileType(File file) { | ||||
|         return file.length() > 0 ? FileTypeUtil.getType(file) : ""; | ||||
|     } | ||||
|  | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV