Tagbangers Blog

Spring Boot CLI をインストールする (Homebrew)

Spring Boot CLI をインストールする。

$ brew tap pivotal/tap
$ brew install springboot

これだけ。Homebrew を使うとほんと簡単でいいですね。

あとはサブコマンドのタブ補完がつかえるように bash-completion をインストールしておく。

$ brew install bash-completion

インストール後、~/.bash_profile に以下を追記する。

if [ -f $(brew --prefix)/etc/bash_completion ]; then
    . $(brew --prefix)/etc/bash_completion
fi

これで spring コマンドが補完機能つきで使えるようになりました。

$ spring <HIT TAB HERE>
grab       init       jar        shell      uninstall  war
help       install    run        test       version

Spring Boot の雛形プロジェクトを作ってみる。

$ spring init --dependencies=web demo

これができあがった雛形プロジェクト。

demo/
├── mvnw
├── mvnw.cmd
├── pom.xml
└── src
    ├── main
    │   ├── java
    │   │   └── com
    │   │       └── example
    │   │           └── DemoApplication.java
    │   └── resources
    │       ├── application.properties
    │       ├── static
    │       └── templates
    └── test
        └── java
            └── com
                └── example
                    └── DemoApplicationTests.java

実行してみる。

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

今日のところは以上。