1

我在 PostgreSQL 数据库current_status的表中有一个枚举类型字段。history枚举定义为:

CREATE TYPE et_status AS ENUM
   ('PENDING', 'SUCCESS', 'LATE', 'EARLY', 'FAILED', 'IN_PROGRESS', 'EXPIRED');

我在服务器端添加了一个枚举类型,并对相关字段的类型以及 getter 和 setter 进行了一些更改。这看起来像:

@Entity
@Table(name = "history")
@XmlRootElement
@NamedQueries({ ... })
public class History implements Serializable {
    public enum StatusType implements Serializable
        {PENDING, SUCCESS, SUCCESS_LATE, SUCCESS_EARLY,
         FAILED, IN_PROGRESS, EXPIRED};

...

    @Lob
    @Column(name = "current_status")
    private StatusType currentStatus;

...

    public StatusType getCurrentStatus() {
        return currentStatus;
    }

    public void setCurrentStatus(StatusType currentStatus) {
        this.currentStatus = currentStatus;
    }
}

在测试 Web 服务时,我收到以下错误:

The object [PENDING], of class [class org.postgresql.util.PGobject], from mapping
[org.eclipse.persistence.mappings.DirectToFieldMapping[currentStatus-->history.current_status]]
with descriptor [RelationalDescriptor(entities.History --> [DatabaseTable(history)])],
could not be converted to [class java.lang.Integer].

搜索互联网产生了这个解决方案,但它似乎需要使用我的安装中似乎没有的 org.hibernate.annotations.TypeDef。

问题:通过 RESTful Web 服务从 PostgreSQL 枚举类型转换为 Java 枚举类型的正确方法是什么?

数据库:PostgreSQL 8.4
应用服务器:Glassfish 3.1.2.2
IDE:NetBeans 7.2
JDK:7 更新 7

4

1 回答 1

1

不要使用@Lob,而是尝试@Enumerated(EnumType.STRING)。

但是,您必须确保 java 中的名称与 postgresql 中的名称完全匹配(它们在您当前的代码中没有)。

于 2012-10-15T17:12:25.600 回答