Spring Data Mongo: How to return nested object by its field?(Spring Data Mongo:如何按其字段返回嵌套对象?)
问题描述
我有域名:
class Company {
List<Job> jobs;
}
有没有办法从集合中返回嵌套对象:
Is there a way to return nested object from collection like:
@Repository
public interface CompanyRepository extends MongoRepository<Company, String>{
Job findByJobId(String jobId);
}
推荐答案
我必须对你的 Job
模型的结构做一些假设,但是假设是这样的:
I have to make some assumptions about the structure of your Job
model, but assuming something like this:
public class Job {
private String id;
// other attributes and methods
}
... 并假设此模型嵌入在您的 Company
模型中,而不是在另一个集合中表示,您将不得不通过 MongoTemplate
路径进行自定义实现.Spring Data 查询 API 将无法弄清楚如何获取您想要的内容,因此您必须自己实现该方法.
... and assuming that this model is embedded in your Company
model, and not represented in another collection, you will have to go the custom implementation via MongoTemplate
route. The Spring Data query API is not going to be able to figure out how to get what you want, so you must implement the method yourself.
@Repository
public interface CompanyRepository extends CompanyOperations, MongoRepository<Company, String>{
}
public interface CompanyOperations {
Job findByJobId(String jobId);
}
public class CompanyRepositoryImpl implements CompanyOperations {
@Autowired private MongoTemplate mongoTemplate;
@Override
public Job findByJobId(String jobId){
Company company = mongoTemplate.findOne(new Query(Criteria.where("jobs.id").is(jobId)), Company.class);
return company.getJobById(jobId); //implement this method in `Company` and save yourself some trouble.
}
}
这篇关于Spring Data Mongo:如何按其字段返回嵌套对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Spring Data Mongo:如何按其字段返回嵌套对象?
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01