gpt4 book ai didi

java - 带有下划线字符的属性的 Spring mongo 查询集合

转载 作者:可可西里 更新时间:2023-11-01 10:16:35 27 4
gpt4 key购买 nike

我正在构建一个查询以使用 MongoTemplate 从 mongo 集合中检索元素。查询条件包含一个带下划线的属性,该属性以某种方式替换为“._”,使查询始终返回 0 个元素。

Criteria matchingCriteria = Criteria
.where("entries").elemMatch(Criteria.where("app_id").is(appId))

查看日志,我可以看到生成的查询如下:

o.s.data.mongodb.core.MongoTemplate: find using query: { "entries" : { "$elemMatch" : { "app._id" : "5834718ab0"}}} fields: null for class: Ranking in collection: ranking

我已经尝试过使用 BasicQuery,用 '\\' 斜线下划线,并使用 unicode“app\u005Fid”。它们都不起作用。重要的是要注意我的数据库中存在一个名为“app”的集合.

行为看起来不标准。当我使用另一个带下划线的属性时,该值不会被替换:

Criteria matchingCriteria = Criteria .where("entries").elemMatch(Criteria.where("unique_app_id").‌​is(appId)) 

日志:

o.s.data.mongodb.core.MongoTemplate find using query: { "entries" : { "$elemMatch" : { "unique_app_id" : "1131706359"}}} fields: null for class: class Ranking in collection: ranking

entries 是一个集合的数组,格式如下:

{
"instanceId" : "654ba2d16579e",
"app_id" : "583471adb0",
"unique_app_id" : "554577506",
"value" : 169
}

值得一提的是,相同的查询(没有下划线替换)在 mongo IDE(本例中为 Robomongo)中运行良好。

我正在使用 spring-boot-starter-data-mongodb 1.4.1.RELEASE。

我现在真的没主意了。

有什么建议吗?

最佳答案

根据本 Spring Data Commons 的第 3.4.3 节文档:

As we treat underscore as a reserved character we stongly advise to follow standard Java naming conventions (i.e. not using underscores in property names but camel case instead).

我认为您不能使用 Spring 在元素名称中间使用下划线字符。手动引用以引用的集合命名。使用文档类型(单数集合名称)后跟 _id ( <document>_id ) .这是唯一可以在中间使用下划线的情况。

更新:这是一个现有的pull request对于您所看到的确切行为,以及 Spring 的 bug tracker

在 Mongo shell 中,我可以成功执行以下查询:

> db.app.findOne({ "entries" : { "$elemMatch" : { "app_id" : "1"}}})
{
"_id" : ObjectId("58a5bc6afa8dd4ae3097d5f7"),
"name" : "Keith",
"entries" : [
{
"instanceId" : "654ba2d16579e",
"app_id" : "1"
}
]
}

因此,当 Spring API 发现多个 _ 时,它可能不会拆分解析条件时标记,但在解析条件时确实拆分遍历。

关于java - 带有下划线字符的属性的 Spring mongo 查询集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42271732/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com