Created
June 2, 2025 16:56
-
-
Save AlejandroSoftwareDeveloper/3d66c6068f9f1dfd81af7f2278929a3e to your computer and use it in GitHub Desktop.
application properties for postgresql
This file contains hidden or 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
spring.application.name=ProjectName | |
spring.datasource.url=jdbc:postgresql://localhost:5432/DataBaseName?createDatabaseIfNotExist=true | |
spring.datasource.username=root | |
spring.datasource.password= | |
# Hibernate Configuration | |
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect | |
spring.datasource.driver-class-name=org.postgresql.Driver | |
spring.jpa.show-sql=true | |
spring.jpa.hibernate.ddl-auto=create-drop | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment