Update 55.3. Applications with multiple source files.md

master
qibaoguang 2015-03-09 23:29:58 +08:00
parent 0b1daff382
commit dd9390d1e5
1 changed files with 10 additions and 0 deletions

View File

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