尝试将PagingAndSortingRepository与自定义查询混合使用,没有运气。
自定义仓库:
public interface SiteRepositoryCustom
{
public List<SitesDbRecord> getActiveSites();
}
Impl回购:
@Repository
public class SiteRepositoryImpl implements SiteRepositoryCustom
{
private static final Logger logger = ...
@PersistenceContext
private EntityManager em;
@Override
public List<SitesDbRecord> getActiveSites()
{
logger.info( "getActiveSites start" );
try
{
String hql = "select s from SitesDbRecord s where s.isActive = true";
return em.createQuery( hql ).setMaxResults( Integer.MAX_VALUE ).getResultList();
}
catch ( Exception e )
{
logger.error( "getActiveSites failed.", e );
return null;
}
}
}
已将回购注入服务:
public interface SiteRepository extends PagingAndSortingRepository<SitesDbRecord, Integer>, SiteRepositoryCustom {
public List<SitesDbRecord> getActiveSites( Pageable pageable );
public List<SitesDbRecord> getActiveSites();
}
如果我只是扩展CrudRepository(没有Pageable方法),那么一切都OK。尝试扩展PagingAndSortingRepository(使用或不使用Pageable方法),则Spring无法使用
启动PropertyReferenceException: No property getActiveSites found for type SitesDbRecord!
对自定义查询使用PagingAndSortingRepository的正确方法是什么?可能是错了,但是我认为提供分页/排序处理是Spring的责任。
答案 0 :(得分:1)
如果SitesDbRecord
具有名为active
的布尔属性,则应为:
public interface SiteRepository extends PagingAndSortingRepository<SitesDbRecord, Integer> {
public List<SitesDbRecord> findByActiveIsTrue( Pageable pageable );
public List<SitesDbRecord> findByActiveIsTrue();
}
无需扩展您的自定义存储库,只需实现PagingAndSortingRepository