source: src/main/resources/application.properties

Last change on this file was 19fa1a3, checked in by Ordanche <ordanchenedev@…>, 4 weeks ago

Initial commit

  • Property mode set to 100644
File size: 443 bytes
RevLine 
[19fa1a3]1spring.application.name=Bank-App-Final
2# PostgreSQL Database configuration
3spring.datasource.url=jdbc:postgresql://localhost:5432/bankappdb4
4spring.datasource.username=postgres
5spring.datasource.password=admin
6spring.datasource.driver-class-name=org.postgresql.Driver
7
8# JPA & Hibernate configuration
9spring.jpa.hibernate.ddl-auto=update
10spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
11spring.jpa.show-sql=true
Note: See TracBrowser for help on using the repository browser.