【发布时间】:2019-09-05 14:28:12
【问题描述】:
我对 JPA 很陌生。我的问题是:是否可以在未保存在数据库中但为 SessionScoped 的实体中定义属性?
@Entity
@Table(name = "article_v_m")
public class Article implements Serializable {
@Id
@Column(name = "cart")
private String ref;
@Transient
public static final List<String> STATUS_PUBLISHED = Collections.unmodifiableList(Arrays.asList("", "D", "R"));
@Transient
public static final List<String> STATUS_DEAD = Collections.unmodifiableList(Arrays.asList("M", "E", "V"));
@Transient
public static final List<String> STATUS_UPCOMING = Collections.unmodifiableList(Arrays.asList("A"));
// I want this property to be SessionScoped
// The problem is that it persists between sessions
// I know this is because of the @Transient annotation
@Transient
public Double realDiscountPercent = 0.00;
@Column(name = "isbn")
private String isbn;
@Column(name = "lart")
private String title;
public String getIsbn() {
return isbn;
}
public void setIsbn(String isbn) {
this.isbn = isbn;
}
public String getTitle() {
if (fullTitle == null || fullTitle.isEmpty()) {
return title;
}
return fullTitle;
}
public void setTitle(String title) {
this.title = title;
}
public Double getRealDiscountPercent() {
return realDiscountPercent;
}
public void setRealDiscountPercent(Double realDiscountPercent) {
this.realDiscountPercent = realDiscountPercent;
}
}
目的是在视图之间检索 realDiscountPercent,但在会话关闭时重置它。我在市场视图中计算它,并希望在球童视图中获取此信息。现在,即使我断开连接并重新连接到另一个帐户,此值也保持不变。
【问题讨论】:
标签: java jpa jakarta-ee