この内容は古いバージョンです。最新バージョンを表示するには、戻るボタンを押してください。
バージョン:1
ページ更新者:T
更新日時:2019-01-30 08:37:31

タイトル: Spring BootでHello World!
SEOタイトル: Spring BootでHello World!

前提

・Bootプロジェクトの作成はこちらを参照。

※Dependenciesだけwebにチェックを入れて、他は全てデフォルトのままでOK。

 

DempApplicationクラスの修正

以下の黄色い部分を追加する。

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class DemoApplication {

    @RequestMapping("/")
    String hello() {
        return "Hello World!";
    }

    
    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

}

 

アプリの起動と画面の表示

プロジェクト名を右クリック→「Run As」→「Spring Boot App」を選択することでプロジェクトが実行されます。

http://localhost:8080」にアクセスすると「Hello World!」が表示されます。