-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.properties
34 lines (28 loc) · 1.08 KB
/
application.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
spring.main.banner-mode=off
# create and drop tables and sequences, loads schema.sql and data.sql
spring.jpa.hibernate.ddl-auto=create,update
# Datasource settings
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.datasource.driver-class-name=org.postgresql.Driver
# HikariCP settings
#spring.datasource.hikari.*
spring.datasource.hikari.connection-timeout=60000
spring.datasource.hikari.maximum-pool-size=5
# Tomcat settings
# spring.datasource.tomcat.*
#spring.datasource.tomcat.maxWait=60000
#spring.datasource.tomcat.maxActive=10
#spring.datasource.tomcat.minIdle=5
# dbcp2 settings
# spring.datasource.dbcp2.*
#spring.datasource.dbcp2.initial-size=7
#spring.datasource.dbcp2.max-total=20
#spring.datasource.dbcp2.pool-prepared-statements=true
# logging
logging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} %-5level %logger{36} - %msg%n
logging.level.org.hibernate.SQL=debug
#logging.level.org.hibernate.type.descriptor.sql=trace
logging.level.org.springframework=debug
logging.level.com.ucuenca.spring=info