@echo off :: 切换代码页为 UTF-8,解决中文乱码 chcp 65001 >nul setlocal enabledelayedexpansion :: --- 配置区域 --- set "targetDir=D:\Code\XXXX" :: 这里支持通配符,例如 hgsl-module-*.iml 或 *.…
@echo off chcp 65001 >nul setlocal EnableDelayedExpansion :: 设置路径 set "projectDir=D:\Code\XXXX" set "yamlPath=XXXX\src\main\resources\application.yaml" …
1.新增spring init 模块 先新增一个普通springboot项目 删除不必要的文件 保留 src 和 pom.xml 参考配置 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XM…