質問編集履歴

1

pom.xml追加しました。よろしくお願いいたします。

2019/11/17 11:58

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -88,7 +88,7 @@
88
88
 
89
89
 
90
90
 
91
- アプリ実行でのコンソール
91
+ Spring bootアプリケーション実行でのコンソール
92
92
 
93
93
  Java HotSpot(TM) 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
94
94
 
@@ -138,6 +138,126 @@
138
138
 
139
139
 
140
140
 
141
+ pom.xml
142
+
143
+ <?xml version="1.0" encoding="UTF-8"?>
144
+
145
+ <project xmlns="http://maven.apache.org/POM/4.0.0"
146
+
147
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
148
+
149
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
150
+
151
+ <modelVersion>4.0.0</modelVersion>
152
+
153
+ <parent>
154
+
155
+ <groupId>org.springframework.boot</groupId>
156
+
157
+ <artifactId>spring-boot-starter-parent</artifactId>
158
+
159
+ <version>2.2.1.RELEASE</version>
160
+
161
+ <relativePath /> <!-- lookup parent from repository -->
162
+
163
+ </parent>
164
+
165
+ <groupId>com.example</groupId>
166
+
167
+ <artifactId>Spring</artifactId>
168
+
169
+ <version>0.0.1-SNAPSHOT</version>
170
+
171
+ <name>Spring</name>
172
+
173
+ <description>Demo project for Spring Boot</description>
174
+
175
+
176
+
177
+ <properties>
178
+
179
+ <java.version>13</java.version>
180
+
181
+ </properties>
182
+
183
+
184
+
185
+ <dependencies>
186
+
187
+ <dependency>
188
+
189
+ <groupId>org.springframework.boot</groupId>
190
+
191
+ <artifactId>spring-boot-starter-web</artifactId>
192
+
193
+ </dependency>
194
+
195
+ <dependency>
196
+
197
+ <groupId>org.springframework.boot</groupId>
198
+
199
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
200
+
201
+ </dependency>
202
+
203
+ <dependency>
204
+
205
+ <groupId>org.springframework.boot</groupId>
206
+
207
+ <artifactId>spring-boot-devtools</artifactId>
208
+
209
+ </dependency>
210
+
211
+ <dependency>
212
+
213
+ <groupId>org.springframework.boot</groupId>
214
+
215
+ <artifactId>spring-boot-starter-test</artifactId>
216
+
217
+ <scope>test</scope>
218
+
219
+ <exclusions>
220
+
221
+ <exclusion>
222
+
223
+ <groupId>org.junit.vintage</groupId>
224
+
225
+ <artifactId>junit-vintage-engine</artifactId>
226
+
227
+ </exclusion>
228
+
229
+ </exclusions>
230
+
231
+ </dependency>
232
+
233
+ </dependencies>
234
+
235
+
236
+
237
+ <build>
238
+
239
+ <plugins>
240
+
241
+ <plugin>
242
+
243
+ <groupId>org.springframework.boot</groupId>
244
+
245
+ <artifactId>spring-boot-maven-plugin</artifactId>
246
+
247
+ </plugin>
248
+
249
+ </plugins>
250
+
251
+ </build>
252
+
253
+
254
+
255
+ </project>
256
+
257
+
258
+
259
+
260
+
141
261
  ### 試したこと
142
262
 
143
263
  Chromeでhttp://localhost:8080/を入力