27 lines
439 B
YAML
27 lines
439 B
YAML
server:
|
|
port: 8080
|
|
servlet:
|
|
context-path: /msg-platform
|
|
|
|
spring:
|
|
application:
|
|
name: mci-server
|
|
|
|
jackson:
|
|
default-property-inclusion: non_null
|
|
|
|
mybatis-plus:
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
global-config:
|
|
db-config:
|
|
logic-delete-field: deleted
|
|
logic-delete-value: 1
|
|
logic-not-delete-value: 0
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: health,info
|