问题No property 属性名 found for type 类名

No property 属性名 found for type 类名

因为jpa方法有命名的规范
报错的原因

UserEntity findByUserNameAndByDeletedIsFalse(String userName);

And后面不需要再写By

UserEntity findByUserNameAndDeletedIsFalse(String userName);

这样就解决了
所以遇到这个问题就是去看jpa的方法有没有写错,或者是自定义的sql

你可能感兴趣的:(jpa错误日志,jpa)