32 lines
804 B
YAML
32 lines
804 B
YAML
|
|
spring:
|
||
|
|
application:
|
||
|
|
name: yf-exam-lite
|
||
|
|
profiles:
|
||
|
|
active: dev
|
||
|
|
main:
|
||
|
|
allow-bean-definition-overriding: true
|
||
|
|
jackson:
|
||
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
||
|
|
time-zone: GMT+8
|
||
|
|
default-property-inclusion: non_null
|
||
|
|
deserialization:
|
||
|
|
fail_on_unknown_properties: false
|
||
|
|
parser:
|
||
|
|
# 允许出现特殊字符和转义符
|
||
|
|
allow_unquoted_control_chars: true
|
||
|
|
#允许出现单引号
|
||
|
|
allow_single_quotes: true
|
||
|
|
serialization:
|
||
|
|
fail-on-empty-beans: false
|
||
|
|
mapper:
|
||
|
|
# 支持类型转换
|
||
|
|
allow-coercion-of-scalars: true
|
||
|
|
server:
|
||
|
|
port: 8101
|
||
|
|
# 启用服务端压缩
|
||
|
|
compression:
|
||
|
|
enabled: true
|
||
|
|
min-response-size: 10
|
||
|
|
mime-types: application/json,application/xml,text/html,text/xml,text/plain,application/javascript,text/css
|
||
|
|
|