質問編集履歴
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -97,4 +97,24 @@
|
|
97
97
|
### 試したこと
|
98
98
|
|
99
99
|
該当のチュートリアルページを参考に進めたのですが、厳密にはパッケージ名やGladleのバージョンに違いがあったかと思われます。
|
100
|
-
更に実行は、Eclipseの再生ボタンからSpringBootアプリケーションを選択し、実行を行いました。
|
100
|
+
更に実行は、Eclipseの再生ボタンからSpringBootアプリケーションを選択し、実行を行いました。
|
101
|
+
|
102
|
+
### 追記
|
103
|
+
DemoApplication.java
|
104
|
+
```
|
105
|
+
package com.example.demo;
|
106
|
+
|
107
|
+
import org.springframework.boot.SpringApplication;
|
108
|
+
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
109
|
+
|
110
|
+
@SpringBootApplication
|
111
|
+
public class DemoApplication {
|
112
|
+
|
113
|
+
public static void main(String[] args) {
|
114
|
+
SpringApplication.run(DemoApplication.class, args);
|
115
|
+
}
|
116
|
+
|
117
|
+
}
|
118
|
+
```
|
119
|
+
以下は、プロジェクトフォルダの配置となります。
|
120
|
+

|