将枚举映射到 grails 中的数据库
我的 grails 应用程序使用了大量枚举,但当前的 GORM 枚举解决方案并不是很令人满意,因为它意味着数据位于代码中,因为 GORM 不会将枚举映射到数据库中。
以前我们使用一张包含不同类型枚举的大表,例如:在一个表中选择县和城市。因此,数据库中的表将包含 3 列:枚举类型(县或城市)、id 和名称(哪个县或城市)。
现在我想将它们切换为真正的枚举,但对于 GORM 来说似乎不太可能。我尝试使用域类中的瞬态来完成此操作,但据我所知,它仍然需要您已经存在一个静态枚举以供该类引用。
我完全迷失在这里,任何人都可以提示我从哪里或哪个功能我可以得到我想要的东西吗?
My grails app uses a lot of enums, but the current GORM solution for enums isn't very satisfactory because it implies the data is in the code, since GORM doesn't map enums into the database.
Previously we used a big table containing different types of enumerations, e.g.: county and city selection in one table. Hence the table in database would contain 3 columns: the enum type (county or city), id and name (which county or city).
Right now I'd like to switch them to real enums, but it just seems unlikely with GORM. I tried to do it with transients in the domain class, but AFAIK it still requires you to have a static enum already present for the class to refer to.
I'm completely lost here, could anybody hint me from where or which function I might get what I wanted ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简而言之,不要将枚举用于非静态且不太可能更改的数据。相反,使用常规域类并引导所需的数据。
Simply, do not use Enums for data which is not static and unlikely to change. Instead, use regular domain classes and bootstrap the required data.
也许这段代码就是您想要的:
然后在 .gsp 中您可以这样制作组合框:
Maybe this code is what you want:
Then in .gsp you can make combobox this way: