From faf9c9e3eee649c64cde590ca92f720a6d1d5e23 Mon Sep 17 00:00:00 2001 From: Ashish Gupta <30566001+gupta-ashu01@users.noreply.github.com> Date: Mon, 18 Oct 2021 10:39:18 +0530 Subject: [PATCH] Update application.yaml --- .../src/main/resources/application.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/persistence-modules/spring-boot-persistence-h2/src/main/resources/application.yaml b/persistence-modules/spring-boot-persistence-h2/src/main/resources/application.yaml index 0ad77cc3cb..aeb33f797a 100644 --- a/persistence-modules/spring-boot-persistence-h2/src/main/resources/application.yaml +++ b/persistence-modules/spring-boot-persistence-h2/src/main/resources/application.yaml @@ -1,14 +1,14 @@ spring: h2: console: - enabled:true - path:/h2-console - console.settings.trace:false - spring.h2.console.settings.web-allow-others:false + enabled: true + path: /h2-console + console.settings.trace: false + spring.h2.console.settings.web-allow-others: false datasource: - url:jdbc:h2:mem:mydb - username:sa - password:password + url: jdbc:h2:mem:mydb + username: sa + password: password driverClassName: org.h2.Driver jpa: - spring.jpa.database-platform:org.hibernate.dialect.H2Dialect + spring.jpa.database-platform: org.hibernate.dialect.H2Dialect