使用 Hibernate 注释保留具有商业价值的枚举

发布于 2024-09-19 13:16:30 字数 121 浏览 4 评论 0原文

我有枚举 ClientType{INTERNAL,ADMIN},我能够使用休眠注释保留枚举。 但插入的值为 INTERNAL,ADMIN。我如何定义我自己的vlaue.我希望表中包含“I”(表示内部)。 我该如何做这个休眠注释。

I have enum ClientType{INTERNAL,ADMIN}, i am able to persist enum with hibernate annotations.
but inserted value is INTERNAL,ADMIN. How can i define my own vlaue. I want table to contain "I" for INTERNAL.
How can i do this hibernate annotations.

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

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

发布评论

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

评论(1

蛮可爱 2024-09-26 13:16:30

据我所知,Hibernate/JPA 中不支持此功能。执行此操作的最佳方法是在实体中包含包含“I”或“A”的 char 属性,但仅公开 ClientType 枚举:

public enum ClientType() {

    INTERNAL('I'), ADMIN('A');

    private final char dbValue;

    private ClientType(char dbValue) {
        this.dbValue = dbValue;
    }

    public static ClientType findByDbValue(char dbValue) {
        for (ClientType t : ClientType.values()) {
             if (t.dbValue == dbValue) {
                  return t;
             }
        }
        throw new IllegalArgumentException ("Unknown type " + dbValue);
    }

}

@Column
private char clientType;


public ClientType getClientType() {
    return ClientType.findByDbValue(this.clientValue);
}

public void setClientType(ClientType type) {
    this.clientType = type.dbValue;
}

There is no support for this built into Hibernate/JPA that I'm aware of. The best way to do this is to have a char property in your entity containing either 'I' or 'A', but to only expose the ClientType enum:

public enum ClientType() {

    INTERNAL('I'), ADMIN('A');

    private final char dbValue;

    private ClientType(char dbValue) {
        this.dbValue = dbValue;
    }

    public static ClientType findByDbValue(char dbValue) {
        for (ClientType t : ClientType.values()) {
             if (t.dbValue == dbValue) {
                  return t;
             }
        }
        throw new IllegalArgumentException ("Unknown type " + dbValue);
    }

}

@Column
private char clientType;


public ClientType getClientType() {
    return ClientType.findByDbValue(this.clientValue);
}

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