diff --git a/VII. Spring Boot CLI/55.3. Applications with multiple source files.md b/VII. Spring Boot CLI/55.3. Applications with multiple source files.md index e69de29..7f3d53c 100644 --- a/VII. Spring Boot CLI/55.3. Applications with multiple source files.md +++ b/VII. Spring Boot CLI/55.3. Applications with multiple source files.md @@ -0,0 +1,10 @@ +### 55.3. 多源文件应用 + +你可以在所有接收文件输入的命令中使用shell通配符。这允许你轻松处理来自一个目录下的多个文件,例如: +```shell +$ spring run *.groovy +``` +如果你想将'test'或'spec'代码从主应用代码中分离,这项技术就十分有用了: +```shell +$ spring test app/*.groovy test/*.groovy +```