1. 程式人生 > >【SpringBoot】 中時間型別 序列化、反序列化、格式處理

【SpringBoot】 中時間型別 序列化、反序列化、格式處理

# 【SpringBoot】 中時間型別 序列化、反序列化、格式處理 ## Date **yml全域性配置** ```yaml spring: jackson: time-zone: GMT+8 date-format: yyyy-MM-dd HH:mm:ss #配置POST請求Body中Date時間型別序列化格式處理,並返回 ``` **請求引數型別轉換** ```java /** * 時間Date轉換 * 配置GET請求,Query查詢Date時間型別引數轉換 */ @Component public class DateConverter implements C