hbm.xml如下所示,如何实现等效的GORM类? “belongsTo”可以指定要映射的列吗?
我对休眠不太了解,HBM中的声明是否是双向数据绑定(bind)?也就是说,如果我删除商品,评论会被删除吗?
<hibernate-mapping package="com.mictest.model">
<class name="CommentInfo" table="CommentInfo" dynamic-insert="true" dynamic-update="true">
<id name="commentId" column="CommentId" type="java.lang.Integer">
<generator class="identity"/>
</id>
<property
name="goodsId"
column="GoodsId"
update="true"
insert="true"
type="java.lang.Integer"
not-null="false"
unique="false"
length="10"/>
<many-to-one name="goods" class="com.mictest.Goods" fetch="select" insert="false" update="false">
<column name="goodsId" />
</many-to-one>
</hibernate-mapping>
最佳答案
没有经过测试,但从一开始。
package com.mictest.model
class CommentInfo {
static belongsTo = [goods: Goods]
static constraints = {
goods nullable:false
}
static mapping = {
id name:"commentId"
table "CommentInfo"
goods column: "goodsId", cascade:'save-update'
}
}
package com.mictest.Goods
class Goods{
// other goods properties here
static hasMany = [comments: CommentInfo]
}
关于hibernate - 如何实现像 hibernate 这样的grails/gorm?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39285243/