@DateTimeFormat 和 @JsonFormat 注解 使用GET请求获取Date类型的方法

1、入参格式化

使用 Spring 的 @DateTimeFormat 注解格式化参数

2、出参格式化

@JsonFormat 注解

@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")

jackson在序列化时间时是按照国际标准时间GMT进行格式化的,而在国内默认时区使用的是CST时区,两者相差8小时。

因为 @JsonFormat 注解不是 Spring 自带的注解,所以使用该注解前需要添加 jackson 相关的依赖包。当然,如果是 SpringBoot 项目就不需要自己手动添加依赖了,因为在 spring-boot-start-web 下已经包含了 jackson 相关依赖。

参考文章:https://blog.csdn.net/zhou520yue520/article/details/81348926

猜你喜欢

转载自www.cnblogs.com/jiehanshi/p/10907193.html