1. spring:
    2. jackson:
    3. #日期格式化
    4. date-format: yyyy-MM-dd HH:mm:ss
    5. serialization:
    6. #格式化输出
    7. indent_output: true
    8. #忽略无法转换的对象
    9. fail_on_empty_beans: false
    10. #设置空如何序列化
    11. defaultPropertyInclusion: NON_EMPTY
    12. deserialization:
    13. #允许对象忽略json中不存在的属性
    14. fail_on_unknown_properties: false
    15. parser:
    16. #允许出现特殊字符和转义符
    17. allow_unquoted_control_chars: true
    18. #允许出现单引号
    19. allow_single_quotes: true