为什么这个 JPA 枚举不起作用?

发布于 2024-10-15 07:15:54 字数 870 浏览 0 评论 0原文

它在数据库中存储一个整数,而不是我请求的字符串。

这是包含枚举的类。

@Entity
@Inheritance(strategy=InheritanceType.JOINED)
public abstract class Document extends BaseModel {

    private String title = new String();
    private String description = new String();

    **@Enumerated(EnumType.STRING)
    private DocumentType documentType;**

    @Embedded
    private DocumentImage documentImage;
    // if document should be displayed or published on the web site.
    private Boolean published = new Boolean(false);

    public Document(DocumentType docType) {
        super();
        documentType = docType;
        setDocumentImage(new DocumentImage());

    }

}

这是枚举类:

public enum DocumentType  {
    policy,procedure,webbookmark,newsrelease,collectionLetter,whitepaper,busform,
    newsarticle ;
}

我知道这应该可行。有什么想法吗?

It is storing an integer in the database not the string as I requested.

Here is the class that contains the enum.

@Entity
@Inheritance(strategy=InheritanceType.JOINED)
public abstract class Document extends BaseModel {

    private String title = new String();
    private String description = new String();

    **@Enumerated(EnumType.STRING)
    private DocumentType documentType;**

    @Embedded
    private DocumentImage documentImage;
    // if document should be displayed or published on the web site.
    private Boolean published = new Boolean(false);

    public Document(DocumentType docType) {
        super();
        documentType = docType;
        setDocumentImage(new DocumentImage());

    }

}

and here is the enum class:

public enum DocumentType  {
    policy,procedure,webbookmark,newsrelease,collectionLetter,whitepaper,busform,
    newsarticle ;
}

I know this should work. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鱼窥荷 2024-10-22 07:15:54

一个可能的原因是您的 @Enumerated 注释未生效,因为 BaseModel 中的注释放置在属性上而不是字段上。字段或属性上的注释的放置在继承层次结构中应该保持一致。

One possible reason is that your @Enumerated annotation doesn't take effect because annotations in BaseModel are placed on properties rather than on fields. Placement of annotations on fields or properties should be consistent across inheritance hierarchy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文