Created
January 16, 2018 07:39
-
-
Save sangdongvan/65a0587baa8bbbb179ef2289cb615440 to your computer and use it in GitHub Desktop.
Config Postgres Datasource for SpringBoot Application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# =============================== | |
# = DATA SOURCE | |
# =============================== | |
# Set here configurations for the database connection | |
spring.datasource.url=jdbc:postgresql://localhost:5432/springbootdb | |
spring.datasource.username=postgres | |
spring.datasource.password=postgres@123 | |
spring.datasource.driver-class-name=org.postgresql.Driver | |
# Keep the connection alive if idle for a long time (needed in production) | |
spring.datasource.testWhileIdle=true | |
spring.datasource.validationQuery=SELECT 1 | |
# =============================== | |
# = JPA / HIBERNATE | |
# =============================== | |
# Show or not log for each sql query | |
spring.jpa.show-sql=true | |
# Hibernate ddl auto (create, create-drop, update): with "create-drop" the database | |
# schema will be automatically created afresh for every start of application | |
spring.jpa.hibernate.ddl-auto=create-drop | |
# Naming strategy | |
spring.jpa.hibernate.naming.implicit-strategy=org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyHbmImpl | |
spring.jpa.hibernate.naming.physical-strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy | |
# Allows Hibernate to generate SQL optimized for a particular DBMS | |
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment