使用SDKMAN,用5分钟完成的SpringBoot的Hello World!

安装JDK。

$ brew cask install java

安装SDKMAN

$ curl -s "https://get.sdkman.io" | bash

安装Spring Boot

$ sdk install springboot 1.4.2.RELEASE
$ spring version
Spring CLI v1.4.2.RELEASE

你好,世界!

我将编写如下代码。

@RestController
class WebApplication {

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

}

我会立即行动起来!

$ spring run hello.groovy
  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.3.0.RELEASE)

我们成功启动了!
请尝试打开 http://localhost:8080。
你花了五分钟完成了吗?(笑)

以下是对于 Spring Boot CLI 官方文档链接的中文释义:

http://docs.spring.io/spring-boot/docs/current/reference/html/cli-using-the-cli.html

https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-cli.html#cli-run

广告
将在 10 秒后关闭
bannerAds