「SpringBoot」Spring Tool Suite4.8でSpring Bootアプリケーションを実行する方法
■ スタート・プロジェクト作成
1.「ファイル」->「新規「N」」をクリックします。
2.「Springスターター・プロジェクト」をクリックします。
3.「名前」の欄に「arkgamestudy」を入力して、「次へ(N)」をクリックします。
4.「Web」->「Spring Web」にチェックを入れて、、「次へ(N)」をクリックします。
5.「完了(F)」をクリックします。
■ クラス作成
1.「com.example.demo」パッケージを右クリックして、「新規(W)」->「クラス」をクリックします。
2.名前に「StudyDemo」を入力して「完了(F)」をクリックします。
3.サンプルコード
package com.example.demo; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class StudyDemo { @GetMapping("/arkgameStudy") public String func() { String target = "think and do it"; return target; } }
3.Tomcatのポートを設定
ファイル:src/main/resources/application.properties
定義内容例:server.port=8085
4.pom.xmlを追加設定
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
5.Spring Bootアプリケーション実行
操作方法
5.1「arkgamestudy」プロジェクトを右クリックします。
5.2 「実行(R)」->「Spring Boot アプリケーション」をクリックします。
6.画面確認
URLアクセス
http://localhost:8085/arkgameStudy
結果
「think and do it」が表示されます。