我正在使用Spring Data Jpa,我想要一个注释来弥补属性以选择日期格式。我寻找一些注释,但我什么也没找到。我想要这样的东西:
@Entity
public class User(){
......(format dd/mm/aa)
private Date birthDay;
}
哆啦的时光机
浏览 179回答 3
3回答
潇湘沐
您可以使用具有多种日期格式的 Spring org.springframework.format.annotation.DateTimeFormat。在您的实体中标注您的 birthDay 属性@Entity public class User(){@DateTimeFormat(pattern="dd/MM/yyyy")private Date birthDay;}
要说明存储到数据库中时您想要的模式,您可以使用注释@DateTimeFormat。@Entity public class User { @DateTimeFormat("dd/MM/yyyy") private Date birthDay; }有很多标准格式,或者您可以设置自己的自定义格式。DateTimeFormatter.class