#開発環境
os Mac
IDE Spring Tool Suite
java 1.8.0_60
#手順
パッケージエクスプローラから、 File>New>Spring Starter Project
プロジェクト名を設定
とりあえずwebだけをチェックし
プロジェクトを作成
コントローラを作成する。
HelloController.javaを作成し、
Hollow Worldを返す
参考
(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を選択
この状態で以下をブラウザから確認
http://localhost:8080/