Spring Data MongoDB在org.springframework.data.mapping.PropertyPath中找不到类型的属性

时间:2014-05-14 14:33:09

标签: mongodb spring-data mongodb-java spring-data-mongodb

我正在使用Spring Data MongodB 1.4.2。发布版本。对于Spring Data MongoDB,我在一个位置创建了自定义存储库接口和实现,并创建了自定义查询函数getUsersName(Users users)

但是我仍然低于例外:

Caused by: org.springframework.data.mapping.PropertyReferenceException:
  No property get found for type Users! at org.springframework.data.mapping.PropertyPath.     (PropertyPath.java:75) at
    org.springframework.data.mapping.PropertyPath.create(PropertyPath.java:327) at 
    org.springframework.data.mapping.PropertyPath.create(PropertyPath.java:359) at
    org.springframework.data.mapping.PropertyPath.create(PropertyPath.java:359) at
    org.springframework.data.mapping.PropertyPath.create(PropertyPath.java:307) at
    org.springframework.data.mapping.PropertyPath.from(PropertyPath.java:270) at
    org.springframework.data.mapping.PropertyPath.from(PropertyPath.java:241) at
    org.springframework.data.repository.query.parser.Part.(Part.java:76) at
    org.springframework.data.repository.query.parser.PartTree$OrPart.(PartTree.java:201) at
    org.springframework.data.repository.query.parser.PartTree$Predicate.buildTree(PartTree.java:291) at 
    org.springframework.data.repository.query.parser.PartTree$Predicate.(PartTree.java:271) at 
    org.springframework.data.repository.query.parser.PartTree.(PartTree.java:80) at 
    org.springframework.data.mongodb.repository.query.PartTreeMongoQuery.(PartTreeMongoQuery.java:47)

下面是我的Spring Data MongoDB结构:

      /*  Users Domain Object */

        @Document(collection = "users")
        public class Users {

        @Id
        private ObjectId id;

        @Field ("last_name")
        private String last_name;

        @Field ("first_name")
        private String first_name;

       public String getLast_name() {
          return last_name;
      }

      public void setLast_name(String last_name) {
        this.last_name = last_name;
     }

      public String getFirst_name() {
        return first_name;
     }

     public void setFirst_name(String first_name) {
        this.first_name = first_name;
     }
}

       /* UsersRepository.java main interface */

        @Repository
        public interface UsersRepository extends MongoRepository<Users,String>, UsersRepositoryCustom { 

             List findUsersById(String id);

         }

       /* UsersRepositoryCustom.java custom interface */

        @Repository
        public interface UsersRepositoryCustom {

           List<Users> getUsersName(Users users);
        }

       /* UsersRepositoryImpl.java custom interface implementation */

        @Component
        public class UsersRepositoryImpl implements UsersRepositoryCustom {

        @Autowired
        MongoOperations mongoOperations;


        @Override
        public List<Users> getUsersName(Users users) {
            return mongoOperations.find(
                    Query.query(Criteria.where("first_name").is(users.getFirst_name()).and("last_name").is(users.getLast_name())), Users.class);
        }

       /* Mongo Test function inside Spring JUnit Test class calling custom function with main UsersRepository interface */

        @Autowired
        private UsersRepository usersRepository;

        @Test
        public void getUsersName() {

            Users users = new Users();
            users.setFirst_name("James");`enter code here`
            users.setLast_name("Oliver");
            List<Users> usersDetails = usersRepository.getUsersName(users);
            System.out.println("users List" + usersDetails.size());


            Assert.assertTrue(usersDetails.size() > 0);
        }

2 个答案:

答案 0 :(得分:0)

存储库界面中的查询方法声明无效。正如reference documentation中明确指出的那样,查询方法需要从get…Byread_Byfind…Byquery…by开始。

答案 1 :(得分:0)

使用自定义存储库时,不应该像Oliver所说的那样需要方法命名约定。我有一个名为updateMessageCount

的方法

话虽如此,我看不出这里提供的代码存在问题。

我在这篇文章的帮助下解决了这个问题,我没有正确地命名我的Impl类:

No property found for type error when try to create custom repository with Spring Data JPA