摘要:
1. SpringBoot设置后台向前台传递Date日期格式 在springboot应用中,@RestController注解的json默认序列化中,日期格式默认为:2020-12-03T15:12:26.000+00:00类型的显示。 在实际显示中,我们需要对其转换成我们需要的显示格式。 1.1 阅读全文
摘要:
我们知道,springboot 有个配置时间格式的参数:spring.jackson.date-format。 通常使用方式是: spring: jackson: date-format: yyyy-MM-dd HH:mm:ss 如果我需要传 yyyy-MM-dd 格式的话,那就只能再加个 @Jso 阅读全文