質問編集履歴

2

pom.xmlの追加

2020/07/16 03:37

投稿

Nov_
Nov_

スコア4

test CHANGED
File without changes
test CHANGED
@@ -206,6 +206,188 @@
206
206
 
207
207
  ```
208
208
 
209
+
210
+
211
+ pom.xml
212
+
213
+ ```xml
214
+
215
+ <?xml version="1.0" encoding="UTF-8"?>
216
+
217
+ <project xmlns="http://maven.apache.org/POM/4.0.0"
218
+
219
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
220
+
221
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
222
+
223
+ <modelVersion>4.0.0</modelVersion>
224
+
225
+ <parent>
226
+
227
+ <groupId>org.springframework.boot</groupId>
228
+
229
+ <artifactId>spring-boot-starter-parent</artifactId>
230
+
231
+ <version>2.3.1.RELEASE</version>
232
+
233
+ <relativePath /> <!-- lookup parent from repository -->
234
+
235
+ </parent>
236
+
237
+ <groupId>com.example</groupId>
238
+
239
+ <artifactId>BookManagement-webapp</artifactId>
240
+
241
+ <version>0.0.1-SNAPSHOT</version>
242
+
243
+ <name>BookManagement-webapp</name>
244
+
245
+ <description>Demo project for Spring Boot</description>
246
+
247
+
248
+
249
+ <properties>
250
+
251
+ <java.version>1.8</java.version>
252
+
253
+ </properties>
254
+
255
+
256
+
257
+ <dependencies>
258
+
259
+ <dependency>
260
+
261
+ <groupId>org.springframework.boot</groupId>
262
+
263
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
264
+
265
+ </dependency>
266
+
267
+ <dependency>
268
+
269
+ <groupId>org.springframework.boot</groupId>
270
+
271
+ <artifactId>spring-boot-starter-data-jdbc</artifactId>
272
+
273
+ </dependency>
274
+
275
+ <dependency>
276
+
277
+ <groupId>org.springframework.boot</groupId>
278
+
279
+ <artifactId>spring-boot-starter-security</artifactId>
280
+
281
+ </dependency>
282
+
283
+ <dependency>
284
+
285
+ <groupId>org.springframework.boot</groupId>
286
+
287
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
288
+
289
+ </dependency>
290
+
291
+ <dependency>
292
+
293
+ <groupId>org.springframework.boot</groupId>
294
+
295
+ <artifactId>spring-boot-starter-web</artifactId>
296
+
297
+ </dependency>
298
+
299
+
300
+
301
+ <dependency>
302
+
303
+ <groupId>mysql</groupId>
304
+
305
+ <artifactId>mysql-connector-java</artifactId>
306
+
307
+ <scope>runtime</scope>
308
+
309
+ </dependency>
310
+
311
+ <dependency>
312
+
313
+ <groupId>org.springframework.boot</groupId>
314
+
315
+ <artifactId>spring-boot-starter-test</artifactId>
316
+
317
+ <scope>test</scope>
318
+
319
+ <exclusions>
320
+
321
+ <exclusion>
322
+
323
+ <groupId>org.junit.vintage</groupId>
324
+
325
+ <artifactId>junit-vintage-engine</artifactId>
326
+
327
+ </exclusion>
328
+
329
+ </exclusions>
330
+
331
+ </dependency>
332
+
333
+ <dependency>
334
+
335
+ <groupId>org.springframework.security</groupId>
336
+
337
+ <artifactId>spring-security-test</artifactId>
338
+
339
+ <scope>test</scope>
340
+
341
+ </dependency>
342
+
343
+ <dependency>
344
+
345
+ <groupId>org.webjars</groupId>
346
+
347
+ <artifactId>bootstrap</artifactId>
348
+
349
+ <version>3.3.7-1</version>
350
+
351
+ </dependency>
352
+
353
+ <dependency>
354
+
355
+ <groupId>org.webjars</groupId>
356
+
357
+ <artifactId>jquery</artifactId>
358
+
359
+ <version>3.1.1</version>
360
+
361
+ </dependency>
362
+
363
+ </dependencies>
364
+
365
+
366
+
367
+ <build>
368
+
369
+ <plugins>
370
+
371
+ <plugin>
372
+
373
+ <groupId>org.springframework.boot</groupId>
374
+
375
+ <artifactId>spring-boot-maven-plugin</artifactId>
376
+
377
+ </plugin>
378
+
379
+ </plugins>
380
+
381
+ </build>
382
+
383
+
384
+
385
+ </project>
386
+
387
+
388
+
389
+ ```
390
+
209
391
    
210
392
 
211
393
  成功例(pythonでの実行)

1

追加

2020/07/16 03:37

投稿

Nov_
Nov_

スコア4

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- 今現在、Spring bootを使って書籍管理をするwebアプリを作成している最中です。
5
+ 今現在、Spring bootとtymeleafを使って書籍管理をするwebアプリを作成している最中です。
6
6
 
7
7
  今やろうとしていることは、webページから書籍のISBNコードを入力した後、jQueryによってopenBDに問合せて書籍情報を表示するというものです。
8
8