Spring Boot CLI - Usando Shell
Spring Boot CLI fornece uma interface Shell para executar os comandos na qual podemos executar diretamente os comandos conforme mostrado abaixo. Vamos paraE:\Test pasta e digite o seguinte comando -
E:/Test> spring shell
O comando acima irá gerar a seguinte saída -
?[1mSpring Boot?[m?[2m (v1.5.8.RELEASE)?[m
Hit TAB to complete. Type 'help' and hit RETURN for help, and 'exit' to quit.
Executando comandos no Shell
Nesta seção, aprenderemos como executar comandos no Shell. Digite o seguinte e veja o resultado -
version
Spring CLI v1.5.8.RELEASE
Você pode pressionar tab para completar automaticamente os comandos e digitar exit para finalizar o console do shell.
Testando o aplicativo em shell
Vamos agora aprender como testar o aplicativo no shell. Digite a seguinte linha de código e veja o resultado -
E:\Test\FirstApplication>spring shell
?[1mSpring Boot?[m?[2m (v1.5.8.RELEASE)?[m
Hit TAB to complete. Type 'help' and hit RETURN for help, and 'exit' to quit.
$ test FirstApplication.groovy TestFirstApplication.groovy
.
Time: 0.347
OK (1 test)
$ exit
E:\Test\FirstApplication>