Answers for "spring boot postgresql properties"

1

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
1

spring boot postgres

<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
    <version>42.2.18</version>
</dependency>
Posted by: Guest on January-07-2021

Code answers related to "spring boot postgresql properties"

Browse Popular Code Answers by Language