我的mongodb存储库如下:
public interface ErrorLogRepository
extends MongoRepository<ErrorLog, String>,
ErrorLogRepositoryCustom{
}
public interface ErrorLogRepositoryCustom
extends MongoRepository<ErrorLog, String>,
ErrorLogRepositoryCustom{
// public List<ErrorLog> filterLogs(Date date, String type);
}
public class ErrorLogRepositoryImpl
implements ErrorLogRepositoryCustom {
@Override
public List<ErrorLog> filterLogs(Date date, String type){
//do some processing and return a list
}
}
我有一些需要实施的特殊逻辑。所以我不得不创建CustomRepository。 如何在我的自定义仓库中为filterLogs()实现分页?