我如何使用 hibernate.reveng 生成 @Enumerated

发布于 2024-10-20 02:53:21 字数 552 浏览 2 评论 0原文

我自己遇到了这个问题,我设法枚举了作为外键的实体的属性(简单的目录->实体场景),但是每次更新我的bean时我都必须执行此过程:

@Column(name = "idcampaign_status", nullable = false)
@Enumerated(EnumType.ORDINAL)
public CampaignStatus getCampaignStatus() {
    return this.campaignStatus;
}

我还排除了生成的CampaignStatus,因为它将是 reveng 文件上的枚举:

<table-filter match-name="campaign_status"
        match-catalog="mycatalog" exclude="true">
</table-filter>

那么有没有一种方法可以使用 hibernate.reveng 来执行此操作,指定枚举器或我可以用作替代方案的自定义创建工具。或者在这种情况下有什么策略可以继续进行?

i encounter myself with this problem, i managed to enumerate attributes of an entity that are Foreign keys (simple catalog->entity scenario) nevertheless i must do this process everytime that i update my beans:

@Column(name = "idcampaign_status", nullable = false)
@Enumerated(EnumType.ORDINAL)
public CampaignStatus getCampaignStatus() {
    return this.campaignStatus;
}

I also exclude the CampaignStatus for the generation since it will be a enum on reveng file:

<table-filter match-name="campaign_status"
        match-catalog="mycatalog" exclude="true">
</table-filter>

So is there a way to do this with hibernate.reveng, specify the enumerator or a custom creation tool that i can use as an alternative. Or any strategy to proceed in this case?

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

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

发布评论

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

评论(1

美羊羊 2024-10-27 02:53:21

似乎 Hibernate.reveng 具有属性类型,以便在代码生成中指定类型,我这样解决了它:

<column name="iduser_type"  type="UserType" />

无论如何,谢谢

Seems that Hibernate.reveng has the property type in order to specify a Type in the Code generation i solved it like this:

<column name="iduser_type"  type="UserType" />

Thanks anyway

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