18 lines
407 B
YAML
18 lines
407 B
YAML
spring:
|
|
h2:
|
|
console:
|
|
enabled: true
|
|
path: /h2-console
|
|
settings.trace: false
|
|
settings.web-allow-others: false
|
|
datasource:
|
|
url: jdbc:h2:mem:mydb
|
|
username: sa
|
|
password: password
|
|
driverClassName: org.h2.Driver
|
|
jpa:
|
|
database-platform: org.hibernate.dialect.H2Dialect
|
|
properties:
|
|
hibernate:
|
|
globally_quoted_identifiers: true
|