Springboot JPA :Date 类型的日期时间,怎么在前台显示为格式化的日期时间

 在返回给前端的model(VO)字段上加一个注解

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

@Entity
@Data
public class order implements Serializable {
    @Id
    @GeneratedValue
    @Column(unique = true)
    private Long id;
    private String orderNumber; // 订单号
    @JsonFormat(shape= JsonFormat.Shape.STRING,pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date orderCreateTime; // 订单创建时间

    
}

 

你可能感兴趣的:(Springboot)