add application.yaml

This commit is contained in:
Colt
2022-10-28 19:10:48 +09:00
parent 124473a129
commit 5472392ccc
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
spring:
datasource:
url: jdbc:h2:mem:testdb;
driver-class-name: org.h2.Driver
username: sa
password:
jpa:
properties:
hibernate:
format_sql: true
hibernate:
ddl-auto: create-drop
naming:
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
implicit-strategy: org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyJpaImpl
show-sql: true