16 lines
567 B
Properties
16 lines
567 B
Properties
|
|
# JDBC Properties
|
||
|
|
spring.datasource.url=jdbc:postgresql://localhost:5432/mobtoolsnew?useSSL=false
|
||
|
|
spring.datasource.username=postgres
|
||
|
|
spring.datasource.password=root
|
||
|
|
spring.datasource.hikari.pool-name=Hikari-Eval-Pool
|
||
|
|
spring.datasource.hikari.maximum-pool-size=16
|
||
|
|
|
||
|
|
# JPA Properties
|
||
|
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
|
||
|
|
spring.jpa.hibernate.ddl-auto=update
|
||
|
|
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false
|
||
|
|
spring.jpa.show-sql=true
|
||
|
|
|
||
|
|
# Jackson Properties
|
||
|
|
spring.jackson.default-property-inclusion=non_null
|