溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么寫springboot接口?

發(fā)布時間:2022-03-04 10:20:33 來源:億速云 閱讀:228 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)怎么寫springboot接口 ,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

首先要明白數(shù)據(jù)的流通方向:

怎么寫springboot接口?

數(shù)據(jù)的觸發(fā)是前端請求后端引起的,遵循傳統(tǒng)的mvc規(guī)范的話 我們需要pojo mapper service controller 四個層次,Pojo 是于數(shù)據(jù)庫中字段直接對應(yīng)的

在線搭建一個springboot項(xiàng)目

https://start.spring.io/

其中需要加入的四個依賴

怎么寫springboot接口?

怎么寫springboot接口?

點(diǎn)擊確定 把沒有用的文件刪除 最后保留一下兩個:

怎么寫springboot接口?

在此處添加jdk的版本:

怎么寫springboot接口?

開始編寫接口實(shí)現(xiàn)

pon.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.6.2</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>1.8</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.2.1</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

application.yml

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/test?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai
    username: root
    password: 123456
server:
  port: 8001

持久層:

package com.example.demo.entity;

import lombok.Data;

@Data
public class User {
    private Integer id;
    private String name;
    private String address;
    private Integer age;
    private String sex;
    private String phone;

}

這里我們引入了 lombok 不需要寫getset方法簡化代碼

<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <version>1.16.10</version>
    <scope>provided</scope>
</dependency>

mapper層

package com.example.demo.mapper;

import com.example.demo.entity.User;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;

import java.util.List;

public interface UserMapper {

    @Select("select * from user")
    List<User> findAll();

    @Update("INSERT INTO `user` (`name`, `address`, `age`, `sex`, `phone`) VALUES (#{name},#{address},#{age},#{sex},#{phone});")
    @Transactional
    void save(User user);


    @Update("update user set name=#{name} , address=#{address}, age=#{age}, sex=#{sex},phone=#{phone} where id =#{id}")
    @Transactional
    void updateById(User user);


    @Delete("delete from user where id =#{id}")
    @Transactional
    void deleteById(Long id);

    @Select("select * from user where id =#{id}")
    User findById(Long id);


    @Select("select * from user limit #{offset},#{pageSize}")
    List<User> findByPage(Integer offset, Integer pageSize);

    @Select("select count(id) from user")
    Integer countUser();
}

controller

package com.example.demo.controller;

import com.example.demo.entity.User;
import com.example.demo.mapper.UserMapper;
import com.example.demo.vo.Page;
import org.apache.ibatis.annotations.Delete;
import org.springframework.web.bind.annotation.*;

import javax.annotation.Resource;
import java.util.List;

@RestController
@RequestMapping("/user")
public class UserController {
    
    @Resource
    UserMapper userMapper;
    @GetMapping
    public List<User> getUser() {
        return userMapper.findAll();
    }

    @PostMapping
    public String addUser(@RequestBody User user){
        //把前端傳過來的數(shù)據(jù)轉(zhuǎn)化為user實(shí)體類的對象插入到數(shù)據(jù)庫中
        userMapper.save(user);
        return "success";


    }
    @PutMapping
    public String updateUser(@RequestBody User user){
        userMapper.updateById(user);
        return "success";
    }

    @DeleteMapping("/{id}")  //一一對相應(yīng)的關(guān)系
    public String deleteUser(@PathVariable("id") Long id){
        //注解是循序json回傳帶有id
        userMapper.deleteById(id);
        return "success";
    }
    @GetMapping("/{id}")  //把返回的結(jié)果 返回出來 包裝成一個user對象
    public User findById(@PathVariable("id") Long id){
        //注解是循序json回傳帶有id
        return userMapper.findById(id);
    }

    @GetMapping("/page")
    public Page<User> findByPage(@RequestParam(defaultValue = "1") Integer pageNum,
                                 @RequestParam(defaultValue = "10") Integer pageSize) {
        Integer offset = (pageNum - 1) * pageSize;
        List<User> userData = userMapper.findByPage(offset, pageSize);
        Page<User> page = new Page<>();
        page.setData(userData);

        Integer total = userMapper.countUser();
        page.setTotal(total);
        page.setPageNum(pageNum);
        page.setPageSize(pageSize);
        return page;
    }

}

注意 :在實(shí)現(xiàn)過程中需要抓啟動類中添加 掃描mapper的注解

以前就是對接口的增刪改查 和分頁查詢的實(shí)現(xiàn)

實(shí)現(xiàn)過程:

快速寫出插入語句

怎么寫springboot接口?

插入實(shí)現(xiàn) 模擬前端想后端發(fā)送json數(shù)據(jù)

更新測試:

怎么寫springboot接口?

刪除實(shí)現(xiàn):

怎么寫springboot接口?

刪除是要注意 id的一一對應(yīng)

怎么寫springboot接口?

分頁查詢:

怎么寫springboot接口?

分頁查詢 參數(shù)1 第幾頁 參數(shù)2 一頁有多少個數(shù)據(jù)

怎么寫springboot接口?

關(guān)于“怎么寫springboot接口 ”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI