我正在做一個應用程序在播放框架中,我需要存儲非實體對象的同一個實例到JPA實體沒有堅持到數據庫,我想知道是否有可能實現這一點,或不使用註釋。什麼我要尋找的樣本代碼:保存一個對象到一個實體沒有堅持它在JPA
public class anEntity extends Model {
@ManyToOne
public User user;
@ManyToOne
public Question question;
//Encrypted candidate name for the answer
@Column(columnDefinition = "text")
public BigInteger candidateName;
//I want that field not to be inserted into the database
TestObject p= new TestObject();
我試圖@Embedded註解,但是它應該嵌入對象字段到實體表。有沒有辦法使用@Embedded,同時保持對象列隱藏在實體表中?
我編輯了這個問題並回答了一下,以澄清總是應該使用相同的瞬態實例。希望你不要介意.. – fasseg 2011-05-09 20:02:35