将对象保存到实体中而不将其保留在JPA中

dea*_*ock 3 java singleton hibernate jpa transient

我正在播放框架中的应用程序,我需要将非实体对象的相同实例存储到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();
Run Code Online (Sandbox Code Playgroud)

我尝试了@Embedded注释,但它应该将对象字段嵌入到实体表中.无论如何使用@Embedded同时保持对象列隐藏在实体表中?

fas*_*seg 7

查看@Transient注释:

"此注释指定属性或字段不是持久的.它用于注释实体类,映射的超类或可嵌入类的属性或字段."

要确保始终获得相同的对象,可以实现Singleton模式,因此您的实体可以使用其getInstance()方法来设置瞬态对象:

所以这应该做的伎俩:

public class anEntity extends Model {
    @Transient
    private TransientSingleton t;

    public anEntity(){ // JPA calls this so you can use the constructor to set the transient instance.
        super();
        t=TransientSingleton.getInstance();
    }


public class TransientSingleton { // simple unsecure singleton from wikipedia

    private static final TransientSingleton INSTANCE = new TransientSingleton();
    private TransientSingleton() {
        [...do stuff..]
    }
    public static TransientSingleton getInstance() {
        return INSTANCE;
    }
}
Run Code Online (Sandbox Code Playgroud)