1
1

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

Last updated at Posted at 2019-02-18

OS: Windows7/10(64bit)
開発言語: Java 8
フレームワーク: Spring Boot 1.1.8/2.0.5
開発環境(IDE): STS(Spring Tool Suite) 4.8

#Spring Tool Suiteのダウンロード
以下のサイトからダウンロードしてください。
https://spring.io/tools
4.png
解凍したフォルダの中にあるsts-4.1.1.RELEASEフォルダを開き、
SpringToolSuite4.exeを実行して起動します。

#新規プロジェクトの作成
[File] > [New] > [Spring Starter Project]で新規プロジェクトを作成します。
03.png
Nameに「SpringDemo」と入力し、[Next]をクリックします。
04.png
Availableの入力欄に文字を入力してCoreを検索します。
以下の3つのCoreを検索してチェックを入れてください。

  • Web
  • Thymeleaf
  • DevTools
    Selectedに追加されているのを確認したら、[Finish]をクリックします。
    05.png
    #新規Javaクラスの作成
    Package Explorerから、
    SpringDemo [boot][devtools] > src/main/java > com.example.demoを右クリックします。
    [New] > [Class]で新規Javaクラスを作成します。
    06.png
    Nameに「HelloController」と入力して、[Finish]をクリックします。
    08.png
    12.png

HelloController.javaを以下のように編集してください。

HelloController.java
package com.example.demo;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
	@RequestMapping("/hello")
	public String hello() {
		return "Hello World !!";
	}
}

###実行する
Package Explorerから、
SpringDemo [boot][devtools]を右クリックして、
[Run As] > [Spring Boot App]をクリックします。
Console画面に「Started SpringDemoApplication」と表示されれば成功です。
13.png
14.png
ウェブブラウザから以下のURLにアクセスします。
http://localhost:8080/hello
15.png

1
1
0

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?