gpt4 book ai didi

java - 避免变量持久化

转载 作者:行者123 更新时间:2023-11-30 04:14:52 26 4
gpt4 key购买 nike

我试图在这里保留一个实体类

@Entity

@Table(name="team")

public class Team {

@Id
protected String teamId;

protected String teamName;
protected String teamDescription;
protected Date createdOn;

protected String teamLeader;

// all getter setter methodes

}

问题是 teamLeader 不在团队表中的字段中。我只是使用它来从表单中获取它的值并在其他地方使用它。我怎样才能避免保留它,因为它像所有其他成员一样被保留。请帮忙。谢谢。

最佳答案

您可以使用 @Transient 注释字段向 JPA 实现指示它不应保留在数据库中的注释。

@Transient
protected String teamLeader;

关于java - 避免变量持久化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18673038/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com