質問編集履歴

1

アプリケーションプロパティの設定値を載せました。

2019/07/11 12:17

投稿

m-88888888
m-88888888

スコア14

test CHANGED
File without changes
test CHANGED
@@ -539,3 +539,31 @@
539
539
  STS 3.9.7
540
540
 
541
541
  Maven 3.1.1
542
+
543
+
544
+
545
+ ### application.properties
546
+
547
+
548
+
549
+ ```
550
+
551
+ spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
552
+
553
+ spring.datasource.driver-class-name=org.h2.Driver
554
+
555
+ spring.datasouce.username=sa
556
+
557
+ spring.datasouce.password=
558
+
559
+ spring.datasource.sql-script-encoding=UTF-8
560
+
561
+ spring.h2.console.enabled=true
562
+
563
+ spring.datasource.initialize=true
564
+
565
+ spring.datasource.schema=classpath:schema.sql
566
+
567
+ spring.datasource.data=classpath:data.sql
568
+
569
+ ```