@JsonFormat和@DateTimeFormat区别:
1.@JsonFormat
解释:该注解主要是处理后端返回给前端的日期字符串的格式
依赖的包:
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.68</version>
使用方法:该注解主要是用在类的属性上面,如下图所示
2.@DateTimeFormat
解释:该注解主要是处理前端传给后端日期字符串格式
依赖的包:直接依赖spring import org.springframework.format.annotation.DateTimeFormat;
使用方法:该方法也是使用在类的属性上面