欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微项目:一步一步带你使用SpringBoot入门(二)

程序员文章站 2023-11-01 20:24:22
今天我们来使用JPA做分页项目并且做讲解 如果是新来的朋友请回上一篇 上一篇:微项目(一) maven整合 在pom文件的 依赖中导入以下依赖 然后重启项目 我们可以看到项目跑起来后运行出来一个tomcat 我们可以看到这里出现了404错误。虽然是错误但是出来这个就对了。 下面我们来配置对项目的增和 ......

今天我们来使用jpa做分页项目并且做讲解

如果是新来的朋友请回上一篇

maven整合

在pom文件的dependencies依赖中导入以下依赖

        <dependency>
            <groupid>org.springframework.boot</groupid>
            <artifactid>spring-boot-starter-web</artifactid>
        </dependency>

然后重启项目
微项目:一步一步带你使用SpringBoot入门(二)
我们可以看到项目跑起来后运行出来一个tomcat
微项目:一步一步带你使用SpringBoot入门(二)

我们可以看到这里出现了404错误。虽然是错误但是出来这个就对了。

下面我们来配置对项目的增和查

在做增查之前,我们需要新建俩个包。

微项目:一步一步带你使用SpringBoot入门(二)

下面我们逐一填东西。

service

service是逻辑层,包括数据处理的方向,和过程。

这里第一个方法好理解,就是向数据库内添加文章。

第二个方法查代表的含义是将数据库分页,

为什么这么做呢?很简单,如果数据过多无法展示我们只能这么做。按照id倒序排列。

package cn.baldorange.anonymous.service;

import cn.baldorange.anonymous.entity.wall;
import cn.baldorange.anonymous.repository.wallrepo;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.data.domain.page;
import org.springframework.data.domain.pagerequest;
import org.springframework.data.domain.sort;
import org.springframework.stereotype.service;
import java.util.date;

@service
public class wallservice {
    @autowired
    wallrepo wallrepo;

    /**
     * 增加吐槽
     * @param title
     * @param content
     * @return
     */
    public boolean savenewwall(string title,string content){
        try {
            string summary = "";
            if (content.length() > 100)
                summary = content.substring(0, 99);
            else summary = content;
            wall wall = new wall(title, content, new date(), summary, "0");
            wallrepo.save(wall);
            return true;
        }catch (exception e){
            return false;
        }
    }



    /**
     * 获得匿名墙的所有文章
     * @return
     */
    public page<wall> findallwalls(integer page,integer size){
        if(page == null) page = 0;
        if(size == null) size =10;
        pagerequest pageable = pagerequest.of(page, size, sort.direction.desc, "id");
        return wallrepo.findall(pageable);
    }
}

controller

至于controller层就比较简单了,

但是从servlet过来的同学要注意了,@putmapping这里可能会给你们带来疑惑,实际上现在http请求常用的不仅仅是get和post 还有 put delete 等等我们没见过的,规定是人定的,人也能改。

package cn.baldorange.anonymous.controller;

import cn.baldorange.anonymous.entity.wall;
import cn.baldorange.anonymous.service.wallservice;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.data.domain.page;
import org.springframework.web.bind.annotation.*;

@restcontroller
@requestmapping("/walls")
public class controller {
    @autowired
    wallservice wallservice;

    @putmapping("/savenewwall")
    public boolean savenewwall(@requestparam string title,@requestparam string content){
        return wallservice.savenewwall(title,content);
    }


    @getmapping("/findallwalls")
    public page<wall> findallwalls(integer page, integer size){
        return wallservice.findallwalls(page,size);
    }

}

配置好后我们启动后访问这里:
http://127.0.0.1:8080/walls/findallwalls

这就是我们所见到的json数据
微项目:一步一步带你使用SpringBoot入门(二)

虽然很乱,但是我们不难发现这里面有我们数据库中的内容。还有一些其他的东西。

我们下面就需要配置接口文件了。

swagger

相信无论是前端还是后端开发,都或多或少地被接口文档折磨过。前端经常抱怨后端给的接口文档与实际情况不一致。后端又觉得编写及维护接口文档会耗费不少精力,经常来不及更新。其实无论是前端调用后端,还是后端调用后端,都期望有一个好的接口文档。但是这个接口文档对于程序员来说,就跟注释一样,经常会抱怨别人写的代码没有写注释,然而自己写起代码起来,最讨厌的,也是写注释。所以仅仅只通过强制来规范大家是不够的,随着时间推移,版本迭代,接口文档往往很容易就跟不上代码了。

首先将maven中引入swagger

        <dependency>
            <groupid>io.springfox</groupid>
            <artifactid>springfox-swagger2</artifactid>
            <version>2.9.2</version>
        </dependency>
        <dependency>
            <groupid>io.springfox</groupid>
            <artifactid>springfox-swagger-ui</artifactid>
            <version>2.9.2</version>
        </dependency>

然后我们新建个包最终目录如下:
微项目:一步一步带你使用SpringBoot入门(二)
swaggerconfig配置文件如下:

package cn.baldorange.anonymous.config;

import org.springframework.context.annotation.bean;
import org.springframework.context.annotation.configuration;
import springfox.documentation.builders.apiinfobuilder;
import springfox.documentation.builders.pathselectors;
import springfox.documentation.builders.requesthandlerselectors;
import springfox.documentation.spi.documentationtype;
import springfox.documentation.spring.web.plugins.docket;
import springfox.documentation.swagger2.annotations.enableswagger2;

@configuration
@enableswagger2
public class swaggerconfig {
    @bean
    docket docket(){
        return new docket(documentationtype.swagger_2)
                .select()
                .apis(requesthandlerselectors.any())
                .paths(pathselectors.any())
                .build()
                .apiinfo(new apiinfobuilder().description("项目").build());
    }
}

ok我们现在重启项目:
并访问
微项目:一步一步带你使用SpringBoot入门(二)
ok我们现在可以使用swagger进行接口测试了,炒鸡棒。

分页技术

数据库分页也是在数据库里写查询语句,不同的是查询的都是指定条数到指定条数的数据,不是一次性把数据全查出来。

当size=2时,返回如下
微项目:一步一步带你使用SpringBoot入门(二)
当size=2,page=2时,返回如下
微项目:一步一步带你使用SpringBoot入门(二)
当size或者page越界时,返回如下
微项目:一步一步带你使用SpringBoot入门(二)

这里的分页后的字段描述如下:

{
    "content": [{}], // 数据列表
    "last": true, // 是否最后一页
    "totalpages": 1, // 总页数
    "totalelements": 1, // 数据总数
    "sort": null, // 排序
    "first": true, // 是否首页
    "numberofelements": 1, // 本页数据条数
    "size": 10, // 每页长度
    "number": 0 // 当前页序号
}

不难看出,jpa的分页机制特别好用,简直不要太爽。

git推上去

微项目:一步一步带你使用SpringBoot入门(二)

微项目:一步一步带你使用SpringBoot入门(二)

ok今天的活就完工了。