From 01858c7e0f2e34057f89466ef51263efdd5ca018 Mon Sep 17 00:00:00 2001 From: Neha Verma Date: Mon, 18 Nov 2024 20:22:53 +0530 Subject: [PATCH] Update application.properties --- .../src/main/resources/application.properties | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/starter/cloudstorage/src/main/resources/application.properties b/starter/cloudstorage/src/main/resources/application.properties index 8b1378917..d3ca14512 100644 --- a/starter/cloudstorage/src/main/resources/application.properties +++ b/starter/cloudstorage/src/main/resources/application.properties @@ -1 +1,19 @@ +server.error.include-message=always +server.error.include-binding-errors=always + +#Please update data source url, username and password properties below +#Sample shown below, `registration` in data source URL property depicts the DB name in database and should be replaced with actual DB name +#spring.datasource.url=jdbc:postgresql://localhost:5432/registration +#spring.datasource.username=postgres +#spring.datasource.password=postgres +spring.datasource.url= +spring.datasource.username= +spring.datasource.password= + +spring.jpa.hibernate.ddl-auto=update +spring.jpa.hibernate.boot.allow_jdbc_metadata_access=false +spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +spring.jpa.properties.hibernate.format_sql=true + +spring.show-sql=true