• <i id='kFO29'><tr id='kFO29'><dt id='kFO29'><q id='kFO29'><span id='kFO29'><b id='kFO29'><form id='kFO29'><ins id='kFO29'></ins><ul id='kFO29'></ul><sub id='kFO29'></sub></form><legend id='kFO29'></legend><bdo id='kFO29'><pre id='kFO29'><center id='kFO29'></center></pre></bdo></b><th id='kFO29'></th></span></q></dt></tr></i><div id='kFO29'><tfoot id='kFO29'></tfoot><dl id='kFO29'><fieldset id='kFO29'></fieldset></dl></div>
  • <legend id='kFO29'><style id='kFO29'><dir id='kFO29'><q id='kFO29'></q></dir></style></legend>

    <small id='kFO29'></small><noframes id='kFO29'>

  • <tfoot id='kFO29'></tfoot>
      <bdo id='kFO29'></bdo><ul id='kFO29'></ul>

        Spring Data Mongo:如何按其字段返回嵌套对象?

        时间:2024-08-23
          <tbody id='XfNHl'></tbody>

      1. <legend id='XfNHl'><style id='XfNHl'><dir id='XfNHl'><q id='XfNHl'></q></dir></style></legend>
        <tfoot id='XfNHl'></tfoot>
        • <bdo id='XfNHl'></bdo><ul id='XfNHl'></ul>
        • <i id='XfNHl'><tr id='XfNHl'><dt id='XfNHl'><q id='XfNHl'><span id='XfNHl'><b id='XfNHl'><form id='XfNHl'><ins id='XfNHl'></ins><ul id='XfNHl'></ul><sub id='XfNHl'></sub></form><legend id='XfNHl'></legend><bdo id='XfNHl'><pre id='XfNHl'><center id='XfNHl'></center></pre></bdo></b><th id='XfNHl'></th></span></q></dt></tr></i><div id='XfNHl'><tfoot id='XfNHl'></tfoot><dl id='XfNHl'><fieldset id='XfNHl'></fieldset></dl></div>

                <small id='XfNHl'></small><noframes id='XfNHl'>

                  本文介绍了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:如何按其字段返回嵌套对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:“没有找到类型的属性"......当将 QueryDslPredicateExecutor 与 MongoDB 下一篇:使用 Spring Data MongoRepository 进行更新查询的自定义方法

                  相关文章

                • <i id='WC6NN'><tr id='WC6NN'><dt id='WC6NN'><q id='WC6NN'><span id='WC6NN'><b id='WC6NN'><form id='WC6NN'><ins id='WC6NN'></ins><ul id='WC6NN'></ul><sub id='WC6NN'></sub></form><legend id='WC6NN'></legend><bdo id='WC6NN'><pre id='WC6NN'><center id='WC6NN'></center></pre></bdo></b><th id='WC6NN'></th></span></q></dt></tr></i><div id='WC6NN'><tfoot id='WC6NN'></tfoot><dl id='WC6NN'><fieldset id='WC6NN'></fieldset></dl></div>
                  <tfoot id='WC6NN'></tfoot>

                  <legend id='WC6NN'><style id='WC6NN'><dir id='WC6NN'><q id='WC6NN'></q></dir></style></legend>
                  1. <small id='WC6NN'></small><noframes id='WC6NN'>

                        <bdo id='WC6NN'></bdo><ul id='WC6NN'></ul>