Grails Hibernate 注释
任何人都可以解释一下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
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.