正如我们所知,Java 日期/时间类型是可变的。因此,如果我们想避免副作用,我们应该封装它们。
我正在寻找一种允许我在 JPA 2.0 中使用这些数据类型并同时实现封装目标的方法。
在我的实践中,我经常使用像这段代码这样的模式:
// imports are omitted
@Entity
@Access(AccessType.PROPERTY)
public class MyEntity {
private Integer id;
@Access(AccessType.FIELD)
private Calendar createdAt;
public MyEntity() {
createdAt = Calendar.getInstance();
}
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Transient
public Date getCreatedAt() {
return createdAt.getTime();
}
public void setCreatedAt(Date createdAt) {
this.createdAt.setTime(createdAt);
}
}
有没有更好的方法来做到这一点?
提前致谢。祝你今天过得愉快。