Basic 1. Spring Tools Suite インストール
1. こちらからEclipseをinstall
2. 動作確認
2.1. プロジェクトを作成する
New -> Projectの「Spring Boot」を開き、「Spring Starter Project」を選択する
NameはHello
Gradle 3.X
Java 11
Spring Webを検索
Spring Webを選択
Finish
2.2. hello worldのファイルに追記
src/main/java/com/example/hello/HelloApplication.java
@SpringBootApplication
の下に
@RestController
と
public static void main(String[] args) {
SpringApplication.run(Hello2Application.class, args);
}
の下に
@GetMapping("/hello")
public String hello(@RequestParam(value = "name", defaultValue = "World") String name) {
return String.format("Hello %s!", name);
}
を追加する。
- Command + Shift + O import文の補完
- Command + Shift + F コードの整形
2.3. ブラウザで表示
src/main/java/com/example/hello/HelloApplication.java
を右クリックして
Run As
-> Spring Boot App
として起動する。
URLにブラウザでアクセス
http://localhost:8080/hello
hello world!
と表示されればインストールは終了。
Author And Source
この問題について(Basic 1. Spring Tools Suite インストール), 我々は、より多くの情報をここで見つけました https://qiita.com/kouki_kyo/items/d7bdeaafcb7963a307e7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .