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