Spring Data: no property xxx found for type xxxx
程序员文章站
2022-07-15 13:30:49
...
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'studentRepository': FactoryBean threw exception on object creation; nested exception is no property orst found for type xxxx
spring data接口
public interface StudentRepository extends Repository<Student,Integer>,CrudRepository<Student, Integer>{
//写一个通过名字查询的方法
//记住 名字的开头是查询的话只能是 get/find开头
//by后面只能写实体字段的名字
public Student findBystuName(String stuName);
public List<Student> findBystuNameAndAddress(String stuName,String address);
/**
* 一连串的查询
*/
public List<Student> findBystuNameAndAddressOrstuNameLikeAndStuIdLessThan(String stuName,String stuAddress,String like,int stuId);
}
这是由最后一个长方法所报的错
findBystuNameAndAddressOrstuNameLikeAndStuIdLessThan
此方法拼接有问题
在orstu处
应OrStu这样写
亲测没有问题
推荐阅读
-
org.springframework.data.mapping.PropertyReferenceException: No property xxx found for type xxx
-
使用spring-data-jpa进行count时报错No property count found for type xxx的解决方案
-
No property name found for type XXX解决
-
Spring Data JPA: No property name found for type ×××
-
Spring Data: no property xxx found for type xxxx
-
JPA踩坑:No property xxx found for type xxx
-
'org.mybatis.spring.mapper.MapperScannerConfigurer' to required type 'xxx' for property 'XX'
-
Illegal overloaded getter method with ambiguous type for property “XXX“ in class “XXXX“
-
JPA Failed to create query for method public abstract;No property xxx found for type xxx问题解决