随笔分类 - idea
摘要:1.备份某个时间之后的更新文件列表到文件中 git log --after="2023-4-3 18:27:44" --name-only --pretty=format:"" > commit_files.txt 2.根据文件中的记录复制文件到新的文件夹 @echo off setlocal en
阅读全文
摘要:1. build lombok 未编译set get方法 You aren‘t using a compiler supported by lombok, so lombok will not work and has been disabled -Djps.track.ap.dependencie
阅读全文
摘要:debug调试快捷键F9 resume programe 恢复程序Alt+F10 show execution point 显示执行断点F8 Step Over 相当于eclipse的f6 跳到下一步F7 Step Into 相当于eclipse的f5就是 进入到代码Alt+shift+F7 For
阅读全文