我有一个很奇怪的问题。在我的存储库中,我需要扩展JpaSpecificationExecutor<T>
接口以便能够findAll(Specification<T>, Pageable)
用于自定义查询分页。
但是,当我使用 JpaSpecificationExecutor 时,
public interface DescriptionRepository extends ParentRepositoryCustom<Description, Long>,
JpaSpecificationExecutor<Description> {
}
应用程序不会构建,抛出No property count found for type class Description
异常。
我的Description
班级没有计数属性。当我JpaSpecificationExecutor
从存储库中删除时,一切正常。