Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Spring 数据 mongodb,我想知道如何使用 Repositories 使用嵌套属性文档进行查找。假设我有这个文件:
{ A:"val", B:{a:1, b:"test"}, B:{a:1, b:"test"} }
我想要的是找到像findByAa(int a);
findByAa(int a);
但这不起作用,请有人可以帮助我!
PS:我愿意不使用 mongoTemplate 而是使用存储库。
谢谢