Chengcheng Wu

Results 2 issues of Chengcheng Wu

# 项目详情点击[这里](https://github.com/AntonyCheng/spring-boot-init-template),模板介绍如下: > **作者:[AntonyCheng](https://github.com/AntonyCheng)** > > **版本号:v2.x.x** > > **开源协议:[Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0.html)** # SpringBoot初始化模板 **基于 Java Web 项目的 SpringBoot 框架初始化模板**,该模板整合了常用的框架,保证大家在此基础上能够快速开发自己的项目,该模板针对于后端启动开发小而精,本项目会由作者持续更新。 * [SpringBoot初始化模板](#springboot初始化模板) * [模板特点](#模板特点) * [主流框架](#主流框架) * [业务特性](#业务特性) * [业务功能](#业务功能)...

鱼哥,这是第一次在Github上提Issues,如果有不合适的地方请见谅! 拷贝时,如果输入路径是输出路径的父级或者两个相等,就会出现递归死循环问题,建议在递归之前先判断一下文件夹关系 ``` public static void doGenerate(Object templateModel, String inputPath, String outputPath) { File inputFile = new File(inputPath); File outputFile = new File(outputPath); if (outputFile.getParent().contains(inputPath) || StrUtil.equals(inputPath, outputPath)) { throw...