質問編集履歴

1

追記

2020/06/04 22:00

投稿

s-lll
s-lll

スコア7

test CHANGED
File without changes
test CHANGED
@@ -197,3 +197,43 @@
197
197
  該当のチュートリアルページを参考に進めたのですが、厳密にはパッケージ名やGladleのバージョンに違いがあったかと思われます。
198
198
 
199
199
  更に実行は、Eclipseの再生ボタンからSpringBootアプリケーションを選択し、実行を行いました。
200
+
201
+
202
+
203
+ ### 追記
204
+
205
+ DemoApplication.java
206
+
207
+ ```
208
+
209
+ package com.example.demo;
210
+
211
+
212
+
213
+ import org.springframework.boot.SpringApplication;
214
+
215
+ import org.springframework.boot.autoconfigure.SpringBootApplication;
216
+
217
+
218
+
219
+ @SpringBootApplication
220
+
221
+ public class DemoApplication {
222
+
223
+
224
+
225
+ public static void main(String[] args) {
226
+
227
+ SpringApplication.run(DemoApplication.class, args);
228
+
229
+ }
230
+
231
+
232
+
233
+ }
234
+
235
+ ```
236
+
237
+ 以下は、プロジェクトフォルダの配置となります。
238
+
239
+ ![イメージ説明](7789001cc7325412dc6d87fa3335e5ed.png)