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
フィールドとフィールドを設定せず、を使用してDBに保存しますpersist()
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();
このコードを実行した後id
、トランザクション t の内部は DB によって自動生成されたものですが、タイムスタンプはnull
.
timestamp
オブジェクトが呼び出されるとオブジェクトに返されるようにするにはどうすればよいpersist()
ですか?
ありがとうございました