Package org.springframework.data.mongodb.repository

Examples of org.springframework.data.mongodb.repository.QPerson


    operations.save(person);
  }

  @Test
  public void providesMongoQuery() {
    QPerson p = QPerson.person;
    QuerydslRepositorySupport support = new QuerydslRepositorySupport(operations) {};
    MongodbQuery<Person> query = support.from(p).where(p.lastname.eq("Matthews"));
    assertThat(query.uniqueResult(), is(person));
  }
View Full Code Here


    person.setSkills(Arrays.asList("vocalist", "songwriter", "guitarist"));

    operations.save(person);

    QPerson p = QPerson.person;
    QuerydslRepositorySupport support = new QuerydslRepositorySupport(operations) {};

    MongodbQuery<Person> query = support.from(p).where(p.skills.any().in("guitarist"));

    assertThat(query.uniqueResult(), is(person));
View Full Code Here

TOP

Related Classes of org.springframework.data.mongodb.repository.QPerson

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.