Grails Hibernate 注释

发布于 2024-11-10 08:33:51 字数 243 浏览 1 评论 0原文

任何人都可以解释一下 hibernate 注释的用途吗?我正在学习 hibernate/grails,但不明白它的作用。检查此处: http://grails.org/doc /1.0.x/guide/15.%20Grails%20and%20Hibernate.html

Can any1 explain me what hibernate annotations are for? I'm learning hibernate/grails and can't understand what it does. Check here: http://grails.org/doc/1.0.x/guide/15.%20Grails%20and%20Hibernate.html.

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

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

发布评论

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

评论(2

治碍 2024-11-17 08:33:51

Hibernate 注释是将域类映射到数据库的另一种方法。一般来说,只有当您有想要在 Grails 应用程序中使用的现有 Hibernate 注释域模型时才应使用它们。

如果您还没有现有的域模型,那么使用默认的 GORM 约定是将域类映射到数据库的更方便的方法。

Hibernate annotations are an alternative way to map your domain classes to the database. Generally, they should only be used if you have an existing Hibernate-annotated domain model that you want to use in a Grails app.

If you don't already have an existing domain model, then using the default GORM conventions is a more convenient way to map your domain classes to the database.

天冷不及心凉 2024-11-17 08:33:51

Hibernate 注释用于配置对象的对象关系映射,即它们定义如何将对象持久保存到数据库中。您可以在 Hibernate 文档<中找到有关使用它们的更多信息/a>.

Hibernate annotations are used to configure object-relational mapping of your objects, i.e. they define how your objects are persisted into the database. You can find more info on using them in the Hibernate documentation.

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