11
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Spring Bootプロジェクトを新規作成してからHollow Worldを出すまで

Last updated at Posted at 2015-10-19

#開発環境 
os Mac
IDE Spring Tool Suite
java 1.8.0_60

#手順
パッケージエクスプローラから、 File>New>Spring Starter Project
スクリーンショット 2015-10-19 21.28.00.png

プロジェクト名を設定
スクリーンショット 2015-10-19 21.29.28.png
とりあえずwebだけをチェックし
プロジェクトを作成
スクリーンショット 2015-10-19 21.29.41.png

コントローラを作成する。
HelloController.javaを作成し、
Hollow Worldを返す
スクリーンショット 2015-10-19 21.30.39.png

参考
http://qiita.com/don_hanabi/items/fe5223c64ecc44a0d944)

HelloController.java
package com.example;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
    @RequestMapping("/")![Invalid file type: ]()

    public String index() {
        return "Hollow World!";
    }
}

起動する
プロジェクトを選択し、Run As>Spring Boot Appを選択

コンソールにSpringの起動ログが表示される
スクリーンショット 2015-10-19 21.43.10.png

スクリーンショット 2015-10-19 21.44.23.png

この状態で以下をブラウザから確認
http://localhost:8080/

ブラウザに表示が行われている。
スクリーンショット 2015-10-19 21.44.50.png

11
17
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?