Project

General

Profile

1
spring.main.banner-mode = off
2
logging.level.root      = INFO
3

    
4
spring.datasource.url=jdbc:postgresql://localhost:5432/dnet_orgs
5
spring.datasource.username=
6
spring.datasource.password=
7

    
8
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
9

    
10
# Hibernate ddl auto (create, create-drop, validate, update)
11
spring.jpa.hibernate.ddl-auto = validate
12
spring.jpa.properties.hibernate.hbm2dll.extra_physical_table_types = MATERIALIZED VIEW
13
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
14
spring.jpa.open-in-view=true
15

    
16
spring.jpa.properties.hibernate.show_sql=true
17
spring.jpa.properties.hibernate.use_sql_comments=true
18
spring.jpa.properties.hibernate.format_sql=true
    (1-1/1)