Update application.yaml

This commit is contained in:
Ashish Gupta 2021-10-18 10:33:43 +05:30 committed by GitHub
parent 88261b4340
commit 6ada7ea861

View File

@ -1,17 +1,14 @@
spring: spring:
h2: h2:
console: console:
enabled: true enabled:true
path: /h2-console path:/h2-console
console.settings.trace:false
spring.h2.console.settings.web-allow-others:false
datasource: datasource:
url: jdbc:h2:mem:mydb url:jdbc:h2:mem:mydb
username: sa username:sa
password: password:password
driverClassName: org.h2.Driver driverClassName: org.h2.Driver
jpa: jpa:
defer-datasource-initialization: true spring.jpa.database-platform:org.hibernate.dialect.H2Dialect
show-sql: true
hibernate:
format_sql: true
validator.apply_to_ddl: false
ddl-auto: create-drop