dnet-applications/apps/dnet-orgs-database-application/src/main/resources/application.properties

19 lines
704 B
Properties
Raw Normal View History

2020-07-03 12:09:22 +02:00
spring.main.banner-mode = off
logging.level.root = INFO
spring.datasource.url=jdbc:postgresql://localhost:5432/dnet_orgs
spring.datasource.username=
spring.datasource.password=
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
# Hibernate ddl auto (create, create-drop, validate, update)
spring.jpa.hibernate.ddl-auto = validate
spring.jpa.properties.hibernate.hbm2dll.extra_physical_table_types = MATERIALIZED VIEW
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
spring.jpa.open-in-view=true
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
spring.jpa.properties.hibernate.format_sql=true