使用Spring Boot CLI 运行第一个项目
前提条件: 安装 CLI 的
创建文件 app.groovy, 内容如下:
@RestController class ThisWillActuallyRun { @RequestMapping("/") String home() { "Hello World!" } }
执行一下命令, 运行该服务.
spring run app.groovy
打开浏览器, 执行 http://localhost:8080
就可以在页面上看到:
Hello World!
操作起来很简单很简单.