Spring Hibernate 和 ENUM

发布于 2024-12-12 16:15:14 字数 219 浏览 0 评论 0原文

我有一个使用 Spring 3 和 Hibernate 3 的应用程序。此时它可以工作。

它使用 hbm.xml 文件将 java 类映射到表。每次启动时它都会创建空表(HSQLDB)。

现在我添加了一个带有 Enum 字段的 classX 类。问题是应用程序启动时会创建除 classX 之外的所有表。

您有任何想法如何快速解决这个问题(并且没有注释)

谢谢

I have an application with Spring 3 and Hibernate 3. It works at this point.

It uses hbm.xml files to map java classes to tables. and on every start it creates empty tables (HSQLDB).

Now I added a class classX with Enum field. The problem is that on start application creates all tables, except classX's one.

Do you have any ideas how to solve this quick (and without annotations)

thank you

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

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

发布评论

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

评论(1

溇涏 2024-12-19 16:15:15

检查日志文件中的 ERROR 行。

除此之外,您应该以特殊的方式映射枚举字段。 请参见此处

不过,我更喜欢注释,您可以在字段上使用 @Enumerated 来映射它。

Check for ERROR lines in the log files.

Apart from that, you should map the enum field in a special way. See here.

I, however, prefer annotations, where you can use @Enumerated on the field to map it.

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