可以曲线救国 筛选的时候添加一下日期 不到那个日期的不显示出来 不然还得添加一个后台任务去修改文章状态吧?
调用这个方法
/**
* Finds all post by status and create time before.
*
* @param status status must not be null
* @param createTime create time must not be null
* @param pageable page info must not be null
* @return a page of post
*/
@NonNull
Page<POST> findAllByStatusAndCreateTimeBefore(@NonNull PostStatus status,
@NonNull Date createTime, @NonNull Pageable pageable);