我们注意到升级到grails 3后出现问题,我们正在使用_id
和id
保存mongoDB文档。 (下面的示例文档)
我们如何停止保存id
?对于应用程序创建和更新文档的每个集合都会发生这种情况。
{
"_id" : ObjectId("5b0ed1b710b3641a98aaee63"),
"value" : "testing",
"type" : "testingCreate",
"updateDate" : ISODate("2018-05-30T16:30:39.987Z"),
"updateUser" : "TSTUSR",
"id" : ObjectId("5b0ed1b710b3641a98aaee63")
}
正在从以下
调用保存def test = new AppParam(type: "testingCreate",
updateUser: "TSTUSR",
updateDate: new Date(),
value: "testing")
test.save(failOnError:true, flush:true)
用于
的appParam域名class AppParam {
ObjectId id
String type
String value
String updateUser
Date updateDate
static mapWith = "mongo"
static mapping = {
version false
writeConcern WriteConcern.ACKNOWLEDGED
}
static constraints = {
type size: 1..50, matches:/^[^<>]{1,50}$/, validator: { field, obj ->
if (!field.trim()) return ['typeRequired']
return true
}
value size: 1..2000, matches:/^[^<>]{1,2000}$/, validator: { field, obj ->
if (!field.trim()) return ['valueRequired']
return true
}
}
}
我们正在使用grailsVersion 3.2.11和gormVersion 6.1.7.RELEASE
答案 0 :(得分:0)
在mapping
关闭中尝试以下内容。
static mapping {
id column: '_id'
version false
writeConcern WriteConcern.ACKNOWLEDGED
}
答案 1 :(得分:0)
在Grails 3.X之后对Mike W的评论进行了更多的研究它应该将mongodb引擎默认为编解码器,我们手动默认mongodb.engine =&#34;映射&#34;。 / p>