我有以下计算字段isIdle的实体:

@Entity
@Table(name = Customer.TABLE)
public class Customer {

    // ...

    @JsonIgnore
    private static final String IS_IDLE_SQL =
        "CASE WHEN (trunc(extract(epoch from now())) - coalesce(last_user_login_time,0) " +
        "> 5 * 24 * 3600 ) THEN 1 ELSE 0 END";

    @Formula(IS_IDLE_SQL)
    private Integer isIdle;

    public Integer getIsIdle() {
        return isIdle;
    }

    public void setIsIdle(Integer isIdle) {
        this.isIdle = isIdle;
    }
}

如果last_user_login_time包含过去5天的UNIX时间戳,则该字段应为0,否则为1。
在计算时,我的DB表中没有对应的列。
部署应用程序时,会出现以下错误:
org.hibernate.HibernateException: Missing column: isIdle in public.customer
    at org.hibernate.mapping.Table.validateColumns(Table.java:366)

为什么Hibernate要为这个计算字段寻找一个列?
数据库使用PostgreSQL。

最佳答案

我通过将SQL语句放在@Formula注释中解决了问题,如下所示:

@Formula("CASE WHEN (trunc(extract(epoch from now())) - coalesce(last_user_login_time,0) " +
    "> 5 * 24 * 3600 ) THEN 1 ELSE 0 END")
private Integer isIdle;

08-28 03:49