[sprintBoot学习笔记之]:一、macOs安装springBoot cli

一、安装springBoot

brew tap pivotal/tap
brew install springboot

Homebrew将spring安装到/usr/local/bin

二、快速启动Spring Cli示例

可以使用以下Web应用程序来测试您的安装。首先,创建一个名为app.groovy的文件,如下所示:

@RestController
class ThisWillActuallyRun {

    @RequestMapping("/")
    String home() {
        "Hello World!"
    }

}

然后从shell运行它,如下所示:

spring run app.groovy

在浏览器中打开http://localhost:8080, 可看到

Hello World!

你可能感兴趣的:([sprintBoot学习笔记之]:一、macOs安装springBoot cli)