-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication.yaml
More file actions
63 lines (62 loc) · 1.57 KB
/
application.yaml
File metadata and controls
63 lines (62 loc) · 1.57 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
spring:
application:
name: heroesofddd
threads:
virtual:
enabled: true
datasource:
url: jdbc:postgresql://localhost:6446/heroes_of_ddd_development
username: heroes_of_ddd_db_user
password: heroes_of_ddd_db_password
driver-class-name: org.postgresql.Driver
jpa:
hibernate:
ddl-auto: update
show-sql: true
properties:
hibernate:
dialect: org.hibernate.dialect.PostgreSQLDialect
axon:
axonserver:
enabled: true
serializer:
general: jackson
events: jackson
messages: jackson
eventhandling:
processors:
Automation_WhenCreatureRecruitedThenAddToArmy_Processor:
mode: pooled
sequencing-policy: gameIdSequencingPolicy
dlq:
enabled: true
Automation_WhenWeekStartedThenProclaimWeekSymbol_Processor:
mode: pooled
sequencing-policy: gameIdSequencingPolicy
dlq:
enabled: true
Automation_WhenWeekSymbolProclaimedThenIncreaseDwellingAvailableCreatures_Processor:
mode: pooled
sequencing-policy: gameIdSequencingPolicy
dlq:
enabled: true
ReadModel_Dwelling:
mode: pooled
sequencing-policy: gameIdSequencingPolicy
Read_GetAllDwellings_QueryCache:
mode: subscribing
sequencing-policy: gameIdSequencingPolicy
application:
maintenance:
enabled: true
interceptors:
paid-commands:
enabled: false
springdoc:
api-docs:
path: /api-docs
swagger-ui:
path: /swagger-ui.html
operationsSorter: method
tagsSorter: alpha
docExpansion: none