-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.yml
More file actions
36 lines (32 loc) · 809 Bytes
/
application.yml
File metadata and controls
36 lines (32 loc) · 809 Bytes
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
35
36
# https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html
server:
port: 8080
tomcat:
threads:
max: 200 # default=200
management:
server:
port: 8081
spring:
jackson:
deserialization:
ACCEPT_SINGLE_VALUE_AS_ARRAY: true # not really necessary, but shows how to customize Jackson
datasource:
hikari:
maximum-pool-size: 40 # default=10
url: jdbc:postgresql://localhost:5432/postgres
username: postgres
password: postgres
jpa:
hibernate.ddl-auto: create-drop
#show-sql: true
properties:
hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect
http:
exchange-client:
url: http://localhost:8888
read-timeout: 5s # default=infinite
logging:
level:
root: INFO
bitxon.spring: DEBUG