Spring Boot CLI

来源:互联网 发布:淘宝网黑色双肩包 编辑:程序博客网 时间:2024/06/05 14:23

CLI:command line tool

https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started-installing-spring-boot.html#getting-started-installing-the-cli


application.groovy

@RestControllerclass HelloWorld{@RequestMapping("/")def hi(){return "HelloWorld"}}

spring run application.groovy

原创粉丝点击