hxy(慌糖盐)
home
about
archives
categories
tags
friends
hxy(慌糖盐)
home
about
archives
categories
tags
friends
Spring RESTful 学习笔记
2024/4/10
Java
笔记
Spring
RESTful
owo
是一种接口规范
每一个url代表一种资源
客户端使用 GET、POST、PUT、DELETE四种方式对服务端资源进行操作
GET用于获取资源
POST用于新建资源(也可以更新)
PUT用于更新
DELETE用于删除
对应的注解
@GetMapping
@PostMapping
@PutMapping
@DeleteMapping
@PatchMapping