質問編集履歴
1
アプリケーションプロパティの設定値を載せました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -268,4 +268,18 @@
|
|
268
268
|
|
269
269
|
Eclipse Photon(4.8.0)
|
270
270
|
STS 3.9.7
|
271
|
-
Maven 3.1.1
|
271
|
+
Maven 3.1.1
|
272
|
+
|
273
|
+
### application.properties
|
274
|
+
|
275
|
+
```
|
276
|
+
spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
277
|
+
spring.datasource.driver-class-name=org.h2.Driver
|
278
|
+
spring.datasouce.username=sa
|
279
|
+
spring.datasouce.password=
|
280
|
+
spring.datasource.sql-script-encoding=UTF-8
|
281
|
+
spring.h2.console.enabled=true
|
282
|
+
spring.datasource.initialize=true
|
283
|
+
spring.datasource.schema=classpath:schema.sql
|
284
|
+
spring.datasource.data=classpath:data.sql
|
285
|
+
```
|