Answers for "spring boot properties configuration for postgresql"

0

spring boot properties configuration for postgresql

// spring boot application.properties file configuration for postgresql
spring.datasource.url = jdbc:postgresql://host:port/dbname
spring.datasource.username = db_username
spring.datasource.password = db_password
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
Posted by: Guest on February-06-2022

Code answers related to "spring boot properties configuration for postgresql"

Browse Popular Code Answers by Language