-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication-prod.yaml
More file actions
46 lines (44 loc) · 828 Bytes
/
Copy pathapplication-prod.yaml
File metadata and controls
46 lines (44 loc) · 828 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
37
38
39
40
41
42
43
44
45
46
# Settings Server
server:
port: 8080
# mybatis config
mybatis:
configuration:
map-underscore-to-camel-case: true
# Settings Spring
spring:
# Database
datasource:
url: jdbc:mariadb://mariadb:3306/local_mariadb
username: admin
password: password
driver-class-name: org.mariadb.jdbc.Driver
# Avoid Override
main:
allow-bean-definition-overriding: true
# hibernate
jpa:
show-sql: true
hibernate:
ddl-auto: none
properties:
dialect: org.hibernate.dialect.MySQL5InnoDBDialect
# Logging Color
output:
ansi:
enabled: always
# Jackson
jackson:
serialization:
WRITE_DATES_AS_TIMESTAMPS: false
# Redis
redis:
host: redis
port: 6379
# Actuator
management:
endpoint:
web:
base-path: /actuator
server:
port: 8082