SpringDataJPA如何实现某分类下的全部信息【分页】

简介: SpringDataJPA如何实现某分类下的全部信息【分页】

1.在springboot中需要引入jpa的starter依赖,数据渲染采用themeleaf。

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

2.TypeController.java

package com.wang.springboot.controller;
import com.wang.springboot.pojo.Type;
import com.wang.springboot.service.BlogService;
import com.wang.springboot.service.TagService;
import com.wang.springboot.service.TypeService;
import com.wang.springboot.vo.BlogQuery;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.data.web.PageableDefault;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestParam;
import javax.servlet.http.HttpServletRequest;
import java.util.List;
/**
 * Created by 王一宁 on 2017/10/23.
 */
@Controller
public class TypeShowController {
    @Autowired
    private TypeService typeService;
    @Autowired
    private BlogService blogService;
    @Autowired
    private TagService tagService;
    /**/
    @GetMapping("/types")
    public String types(@PageableDefault(size = 10, sort = {"updateTime"}, direction = Sort.Direction.DESC) Pageable pageable,
                        HttpServletRequest request,
                        Model model) {
        // 1.点击分类,拿到的分类id
        String id = request.getParameter("id");
        long id2 = Long.parseLong(id);
    // 2.把分类id放入到session
        request.getSession().setAttribute("id", id);
        // 3.拿到所有的分类
        List<Type> types = typeService.listTypeTop(10000);
        /*if (id == -1) {
            id = types.get(0).getId();
        }*/
        // 4.封装查询对象
    // 或者自己实现根据id查询所有就好。
        BlogQuery blogQuery = new BlogQuery();
        blogQuery.setTypeId(id2);
    //5.放入前台页面的实体
        model.addAttribute("types", types);
        model.addAttribute("page", blogService.listBlog(pageable, blogQuery));
        return "list";
    }
    /*分页发送请求的地址*/
    @GetMapping("/pages")
    public String pages(@PageableDefault(size = 10, sort = {"updateTime"}, direction = Sort.Direction.DESC) Pageable pageable,
                        HttpServletRequest request,
                        Model model) {
        // 1.拿到所有的分类
        List<Type> types = typeService.listTypeTop(10000);
    // 2.取出session存放的分类id
        String id2 = (String) request.getSession().getAttribute("id");
        Long id = Long.parseLong(id2);
        // 3.查询对象,BlogQuery封装分类的ID,根据id查询
    // 或者自己实现根据id查询所有就好。
        BlogQuery blogQuery = new BlogQuery();
        blogQuery.setTypeId(id);
        model.addAttribute("types", types);
        model.addAttribute("page", blogService.listBlog(pageable, blogQuery));
        return "list";
    }
}

3.前台页面

<li class="menu"><a href="">分类</a>
                    <ul class="sub">
                        <li th:each="type : ${types}"><a th:href="@{/types/{id}(id=${type.id})}" th:text="${type.name}">分类名称</a>
                        </li>
                    </ul>
                    <span></span>
                </li>
/**
*  省略遍历内容的列表
*/
<div class="pagelist" th:if="${page.totalPages}>1">
                <a th:href="@{/pages?page=0}" th:classappend="${page.number==0} ? 'curPage'" >首页</a>
                <a th:href="@{/pages?page=1}" th:classappend="${page.number==1} ? 'curPage'">2</a>
                <a th:href="@{/pages?page=1}" th:classappend="${page.number==2} ? 'curPage'">3</a>
                <a th:href="@{/pages?page=2}" th:classappend="${page.number==3} ? 'curPage'">4</a>
                <a th:href="@{/pages?page=3}" th:classappend="${page.number==4} ? 'curPage'">5</a>
                <a>...</a>
                <a th:href="@{/pages(page=${page.totalPages}-1)}"  th:classappend="${page.number==page.totalPages-1} ? 'curPage'" >末页</a>
                <a th:href="@{/pages(page=${page.number}-1)}" th:unless="${page.first}">上一页</a>&nbsp;
                <a th:href="@{/pages(page=${page.number}+1)}" th:unless="${page.last}">下一页</a>
            </div>


目录
相关文章
|
算法 JavaScript Java
通用分页【下】(将分页封装成标签)
调试()是指在软件开发过程中,通过识别、定位和解决程序错误或问题的过程。调试的目的是找出代码中的错误、异常或不正常的行为,并修复它们,以确保程序能够按照预期的方式运行。调试是一个重要的开发技巧,可以帮助开发人员理解程序的执行过程、找出错误的原因,并从中学习和改进。调试可以使用不同的工具和技术来辅助,例如打印输出、日志记录、调试器(debugger)等。调试是开发过程中不可或缺的一部分,可以帮助开发人员提高代码质量、加快解决问题的速度,并优化程序的性能和可靠性。
|
Java
jpa实现增删改查,分页,自定义查询,jpql查询
jpa实现增删改查,分页,自定义查询,jpql查询
101 0
|
容器
laypage静态数据分页组件的调用实战代码
laypage静态数据分页组件的调用实战代码
77 0
|
前端开发 Java 测试技术
基于Springboot外卖系统15:菜品分页查询模块+根据类别ID填充类别信息
系统中的菜品数据很多的时候,如果在一个页面中全部展示出来会显得比较乱,不便于查看,所以一般的系统中都会以分页的方式来展示列表数据。
199 0
|
SQL 前端开发 数据库
列表分页接口有哪些方案,你知道吗?
列表分页接口有哪些方案,你知道吗?
354 0
列表分页接口有哪些方案,你知道吗?
分页获取数据列表GetListByPage
分页获取数据列表GetListByPage
101 0
|
SQL 开发者
OR-Mapping 设计改进(统计查询改进) | 学习笔记
简介:快速学习 OR-Mapping 设计改进(统计查询改进)
|
SQL 前端开发 Java
Swagger直接返回MybatisPlus的Page类文档不展开显示问题剖析
Swagger直接返回MybatisPlus的Page类文档不展开显示问题剖析
520 0
Swagger直接返回MybatisPlus的Page类文档不展开显示问题剖析
|
Java
JavaWeb实现商品列表的多条件查询和分页功能(超详细的~)
JavaWeb实现商品列表的多条件查询和分页功能(超详细的~)
1141 0
JavaWeb实现商品列表的多条件查询和分页功能(超详细的~)
|
JavaScript 搜索推荐 前端开发
【自然框架】QuickPager分页控件,新增一种分页方式——伪URL分页(Postback版)
适用场景   先说一下伪URL分页的适用场景。在网站的网页里实现查询功能,如果查询条件比较少的话,还比较好办,把查询条件放到URL里面传递即可。但是如果查询条件过多,就会照成URL的长度过长。既不好看,编写起来也很麻烦。
1170 0