加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

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

发布时间:2020-12-15 08:40:13 所属栏目:Java 来源:网络整理
导读:我正在播放框架中的应用程序,我需要将非实体对象的相同实例存储到JPA实体中而不将其持久化到数据库中,我想知道是否可以使用注释实现该实现.我正在寻找的示例代码是: public class anEntity extends Model { @ManyToOne public User user; @ManyToOne public
我正在播放框架中的应用程序,我需要将非实体对象的相同实例存储到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同时保持对象列隐藏在实体表中?

解决方法

查看 @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;
    }
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读