我试图在我的一个Hibernate4.1实体类中使用@Formula注释。从一些文章中我了解到,这个注释需要放在属性定义上,所以我做到了。但什么都没发生。无论公式内容多么简单,Hibernate只是将属性直接放入生成的sql中,然后抛出“无效标识符”异常,因为很明显在物理表中没有相应的列具有该名称。
我只能找到一些关于如何使用@Formula的文档,但是他们都没有谈到Hibernate4是否仍然支持它。那么这个问题有一定的答案吗?我可以用这种或那种方式使用这种注释吗?
添加内容: 以下是示例代码:
package sample.model;
import java.math.BigDecimal;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import org.hibernate.annotations.Formula;
@Entity
@Table(name = "STAGE_TRACK", schema = "")
public class StageTrack implements java.io.Serializable {
// Fields
private BigDecimal id;
private Date startTime;
private Date endTime;
@Formula("(END_TIME - START_TIME)*24*60")
private BigDecimal duration;
public BigDecimal getDuration() {
return this.duration;
}
public void setDuration(BigDecimal duration) {
this.duration = duration;
}
// Constructors
/** default constructor */
public StageTrack() {
}
/** minimal constructor */
public StageTrack(BigDecimal id) {
this.id = id;
}
/** full constructor */
public StageTrack(BigDecimal id, Date startTime, Date endTime) {
this.id = id;
this.startTime = startTime;
this.endTime = endTime;
}
// Property accessors
@Id
@Column(name = "ID", unique = true, nullable = false, precision = 22, scale = 0)
public BigDecimal getId() {
return this.id;
}
public void setId(BigDecimal id) {
this.id = id;
}
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "START_TIME", length = 7)
public Date getStartTime() {
return this.startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "END_TIME", length = 7)
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
}
答案 0 :(得分:0)
问题是您将@Formula
放在字段上,而其他注释放在getter上,因此会忽略@Formula
。
你应该选择一个策略并一致地应用它(除非你用@AccessType
明确地覆盖它。)
@Formula("(END_TIME - START_TIME)*24*60")
public BigDecimal getDuration() {
return this.duration;
}