From dd9390d1e5345beb6406885159c480cf31ec9be4 Mon Sep 17 00:00:00 2001 From: qibaoguang Date: Mon, 9 Mar 2015 23:29:58 +0800 Subject: [PATCH] Update 55.3. Applications with multiple source files.md --- .../55.3. Applications with multiple source files.md | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 +```