其他分享
首页 > 其他分享> > 分页查询的使用

分页查询的使用

作者:互联网

分页查询的使用

一、TypeService.java

Page<Type> listType(Pageable pageable);

二、TypeServiceImpl.java

@Transactional
    @Override
    public Page<Type> listType(Pageable pageable) {
        return typeRepository.findAll(pageable);
    }

三、TypeRepository.java

public interface TypeRepository extends JpaRepository<Type,Long> {
@Query("select t from Type t")
    List<Type> findTop(Pageable pageable);
    }

四、HTNL页面

 <tfoot>
          <tr>
            <th colspan="6" >
              <div class="ui mini pagination menu" th:if="${page.totalPages}>1">
                <a th:href="@{/admin/types(page=${page.number}-1)}" class="  item" th:unless="${page.first}">上一页</a>
                <a th:href="@{/admin/types(page=${page.number}+1)}" class=" item" th:unless="${page.last}">下一页</a>
              </div>
              <a href="#" th:href="@{/admin/types/input}"  class="ui mini right floated teal basic button">新增</a>
            </th>
          </tr>
 </tfoot>

标签:java,pageable,TypeRepository,查询,分页,使用,listType,public,Pageable
来源: https://blog.csdn.net/qq_40708522/article/details/119146894