欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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这样写 

亲测没有问题




   



相关标签: spring data