当前位置:首页 > 编程技术 > 正文内容

java下一页如何做?用springboot框架完整前后端代码

yc8883周前 (10-11)编程技术74

java下一页如何做?用springboot框架完整前后端代码

首先,确保你已经安装了Java开发环境(JDK 8 或更高版本)和Maven。接着创建一个新的Spring Boot项目。你可以通过Spring Initializr (https://start.spring.io/) 来快速生成项目结构。选择以下依赖项:

  • Spring Web

  • Thymeleaf

  • Spring Data JPA

  • H2 Database (或任何其他数据库)

后端部分

  1. 实体类 (Entity)创建一个简单的实体类Article代表文章。

package com.example.demo.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class Article {    @Id    @GeneratedValue(strategy = GenerationType.AUTO)    private Long id;    private String title;    private String content;    // getters and setters }

仓库接口 (Repository)使用Spring Data JPA自动生成CRUD操作。

package com.example.demo.repository; import com.example.demo.model.Article; import org.springframework.data.jpa.repository.JpaRepository; public interface ArticleRepository extends JpaRepository<Article, Long> { }

控制器 (Controller)编写控制器处理HTTP请求并返回分页数据。

package com.example.demo.controller; import com.example.demo.model.Article; import com.example.demo.repository.ArticleRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; @Controller public class ArticleController {    @Autowired    private ArticleRepository articleRepository;    @GetMapping("/articles")    public String listArticles(@RequestParam(defaultValue = "0") int page, Model model) {        Pageable pageable = PageRequest.of(page, 5); // 每页显示5条记录        Page<Article> articlesPage = articleRepository.findAll(pageable);        model.addAttribute("articles", articlesPage.getContent());        model.addAttribute("currentPage", page);        model.addAttribute("totalPages", articlesPage.getTotalPages());        return "articles";    } }

配置文件 (application.properties)配置H2数据库连接信息等。

spring.datasource.url=jdbc:h2:mem:testdb spring.datasource.driverClassName=org.h2.Driver spring.datasource.username=sa spring.datasource.password=password spring.h2.console.enabled=true

前端部分

  1. HTML模板 (Thymeleaf) 创建一个Thymeleaf模板来展示文章列表及分页链接。

<!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head>    <title>Articles</title> </head> <body>    <h1>Articles</h1>    <div th:each="article : ${articles}">        <p><strong th:text="${article.title}"></strong></p>        <p th:text="${article.content}"></p>    </div>    <a th:if="${currentPage > 0}" th:href="@{/articles(page=${currentPage - 1})}">Previous</a>    <a th:if="${currentPage < totalPages - 1}" th:href="@{/articles(page=${currentPage + 1})}">Next</a> </body> </html>

以上就是使用Spring Boot与Thymeleaf实现简单分页功能的一个例子。

本站发布的内容若侵犯到您的权益,请邮件联系站长删除,我们将及时处理!


从您进入本站开始,已表示您已同意接受本站【免责声明】中的一切条款!


本站大部分下载资源收集于网络,不保证其完整性以及安全性,请下载后自行研究。


本站资源仅供学习和交流使用,版权归原作者所有,请勿商业运营、违法使用和传播!请在下载后24小时之内自觉删除。


若作商业用途,请购买正版,由于未及时购买和付费发生的侵权行为,使用者自行承担,概与本站无关。


本文链接:https://www.10zhan.com/biancheng/11577.html

分享给朋友:

“java下一页如何做?用springboot框架完整前后端代码” 的相关文章

【说站】laravel实现自定义404页面并给页面传值

【说站】laravel实现自定义404页面并给页面传值

以 laravel5.8 为例,虽然有自带的404页面,但太简单,我们更希望能自定义404页面,将用户留在站点。实现的方式很简单,将自定义的视图文件命名为 404.blade.php,并放到 reso...

【说站】Thymeleaf报错Error resolving template “XXX”

【说站】Thymeleaf报错Error resolving template “XXX”

修改了一下开源项目的目录结构访问突然报错Error resolving template “XXX”可能原因有如下三种:第一种可能:原因:在使用springboot的过程中,如果使用thymeleaf...

【说站】Centos8.0如何配置静态IP详解及永久关闭防火墙

【说站】Centos8.0如何配置静态IP详解及永久关闭防火墙

这篇文章主要介绍了详解Centos8 配置静态IP的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来学习一下!1. 查看自己的网关地址点击虚...

【说站】vagrant实现linux虚拟机的安装并配置网络

【说站】vagrant实现linux虚拟机的安装并配置网络

一、VirtualBox的下载和安装1、下载VirtualBox官网下载:https://www.virtualbox.org/wiki/Downloads我的电脑是Windows的,所以下载Wind...

【说站】C#在PDF中添加墨迹注释Ink Annotation的步骤详解

【说站】C#在PDF中添加墨迹注释Ink Annotation的步骤详解

PDF中的墨迹注释(Ink Annotation),表现为徒手涂鸦式的形状;该类型的注释,可任意指定形状顶点的位置及个数,通过指定的顶点,程序将连接各点绘制成平滑的曲线。下面,通过C#程序代码介绍如何...

【说站】Java从resources读取文件内容的方法有哪些

【说站】Java从resources读取文件内容的方法有哪些

本文主要介绍的是java读取resource目录下文件的方法,比如这是你的src目录的结构├── main│ ├── java│ │ └── ...