SpringBoot :No property xx found for type xx!

springdata中出现此类问题的主要解决办法:

问题出在repository上

  • 检查jpa中JPQL语句,by and or lessthan 等之后的javabean字段是否对应存在,大小写是否一致等。
  • 字段命名时应避免使用下划线作为字段的一部分,JPA会将字段再切分只检索下划线前的部分,造成错误
  • 检查导入的包是否错误
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;

你可能感兴趣的:(SpringBoot :No property xx found for type xx!)