spring boot format date

https:‮//‬www.lautturi.com
spring boot format date
@Entity
public class Order{

  //forma date using DateTimeFormat
  @DateTimeFormat(pattern = "yyyy-MM-dd")
  private LocalDate createDate;
  
  // or
  
  //format time
  @JsonFormat(pattern="HH:mm:ss")
  private Time orderTime;
  //forma date
  @JsonFormat(pattern="yyyy-MM-dd")
  private Date orderDate;
}
Created Time:2017-10-09 16:12:18  Author:lautturi