source: src/main/resources/application.properties

Last change on this file was 6791e89, checked in by Leona <leona@…>, 2 years ago

working on reservations part

  • Property mode set to 100644
File size: 837 bytes
Line 
1server.port=9090
2
3# Datasource configuration
4spring.datasource.url=jdbc:postgresql://localhost:9999/db_202122z_va_prj_vintagelibrary
5spring.datasource.username=db_202122z_va_prj_vintagelibrary_owner
6spring.datasource.password=45dc6bb3181a
7
8# Default connection pool
9spring.datasource.hikari.connection-timeout=20000
10spring.datasource.hikari.maximum-pool-size=5
11
12spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQL95Dialect
13spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
14
15spring.jpa.hibernate.ddl-auto=update
16spring.jpa.show-sql=true
17
18spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
19spring.jpa.hibernate.naming.implicit-strategy=org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyJpaImpl
20
21spring.jpa.open-in-view=false
Note: See TracBrowser for help on using the repository browser.