我在Hibernate实现中使用JPA。我的@entity交易如下:
@Entity
public class Transaction {
private int id;
private Date timestamp;
...
@Basic
@Column(name = "timestamp", insertable = false, updatable = true)
@Temporal(TemporalType.TIMESTAMP)
public Date getTimestamp() {
return timestamp;
}
public void setTimestamp(Date timestamp) {
this.timestamp = timestamp;
}
...
@Column(name = "id")
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "transaction_id_seq")
@SequenceGenerator(name = "transaction_id_seq", sequenceName = "transaction_id_seq", allocationSize = 1)
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
创建新事务时,我不设置id
和timestamp
字段,而是使用persist()
将其保存在DB中
PersistenceProvider pp = new HibernatePersistence();
EntityManagerFactory emf = pp.createEntityManagerFactory("pu", new HashMap());
EntityManager em = emf.createEntityManager();
Transaction t = new Transaction();
em.getTransaction().begin();
em.persist(t);
em.getTransaction().commit();
运行此代码后,事务t中的id
是DB自动生成的,但时间戳是null
。
如何在调用persist()
后将timestamp
返回给对象?
感谢
TemporalType.TIMESTAMP的行为与您预期的不同。
创建记录时,它不会自动在列中插入当前时间戳。它简单地描述了要在数据库中保存的日期信息。JPA不支持此功能AFAIK。
对于您正在寻找的功能,我知道Mysql支持创建一个以当前时间为默认值的列
CREATE TABLE `Transaction` (
...
`timestamp` TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
如果您也想更改更新的值,请查看文档。
如果您使用的是Oracle,那么我建议您使用触发器。
CREATE TRIGGER <trigger_name> BEFORE INSERT ON Transaction FOR EACH ROW SET NEW.timestamp = CURRENT_TIMESTAMP;
否则,在持久化Transaction对象之前,您必须手动初始化它中的时间戳字段。