使用注解将时间格式化

我们以前常用的时间格式化方法是:

import java.text.SimpleDateFormat;
import java.util.Date;
 
public class Main{
    public static void main(String[] args){
        Date date = new Date();
        String strDateFormat = "yyyy-MM-dd HH:mm:ss";//指定格式化的格式
        SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
         System.out.println(date);
        System.out.println(sdf.format(date));
    }
}

使用注解将时间格式化

使用 @DateTimeFormat注解

此注解是前端传时间类型数据时格式化的注解
使用注解将时间格式化

使用JsonForMat注解

这个注解既能格式化前端数据,也能格式化后端数据
使用方式跟上面的一样@DateTimeFormat一样

上一篇:时间戳转换问题


下一篇:Java生成某时间段内的随机时间