Skip to content

Latest commit

 

History

History

simple

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

表结构

Table

POST 请求

# 创建
## 初始化
https://localhost:8080/init

# 删除
## 删除全部
https://localhost:8080/deleteAll

## 删除 byID
https://localhost:8080/delete
    - id: 1

# 修改
## 书名重命名
https://localhost:8080/rename
    - id: 1
    - name: Spring in Action 5th

# 查询
## 查询全部
https://localhost:8080/findAll

## 按书名查找 精确查找
https://localhost:8080/find
    - name: Spring Boot in Action

## 按书名查找 模糊查找
https://localhost:8080/find/like
    - name: in

## 按书名查找 startsWith
https://localhost:8080/find/startsWith
    - name: Spring

## 按书名查找 模糊查找 & Top5
https://localhost:8080/find/top5
    - name: in

参考