gpt4 book ai didi

java - Mongo 存储库按条件查找不起作用

转载 作者:行者123 更新时间:2023-12-02 01:16:18 24 4
gpt4 key购买 nike

我有一个 MongoRepository 查询方法,需要根据条件获取数据。

我在数据库中有以下记录。

{
'name' : 'test',
'show' : false,
'free' : true
}

以及以下查询,但查询不返回此记录。

repositiry.findByNameNotNullAndShowIsTrueOrFreeIsTrue()

根据条件,Namenot null 并且 FreeTrue。但为什么我没有得到记录。

最佳答案

我重现了你的场景。它在这里工作。记录的查询是正确的。

{
"$or": [
{
"name": {
"$ne": null
},
"show": true
},
{
"free": true
}
]
}

要启用 mongodb 查询日志,您必须调试 MongoTemplate。

logging.level.org.springframework.data.mongodb.core.MongoTemplate = DEBUG

实体

@Document
@Data
@Builder
class Entity {
private String id;
private String name;
private boolean show;
private boolean free;
}

存储库

interface EntityRepository extends MongoRepository<Entity,String> {

List<Entity> findByNameIsNotNullAndShowIsTrueOrFreeIsTrue();
}

测试

@Test
public void testQuery() {
repository.deleteAll();

Entity entity = Entity.builder()
.free(true)
.show(false)
.name("test")
.build();
repository.save(entity);

List<Entity> entities = repository.findByNameIsNotNullAndShowIsTrueOrFreeIsTrue();

Assert.assertEquals(1, entities.size());
}

关于java - Mongo 存储库按条件查找不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58491365/

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