Spring Restful 状态

http请求有些状态,通过状态可以判断操作成功与否。

常见的状态消息有:

200 OK - [GET]:服务器成功返回用户请求的数据,该操作是幂等的(Idempotent)。
201 CREATED - [POST/PUT/PATCH]:用户新建或修改数据成功。
202 Accepted - []:表示一个请求已经进入后台排队(异步任务)
204 NO CONTENT - [DELETE]:用户删除数据成功。
400 INVALID REQUEST - [POST/PUT/PATCH]:用户发出的请求有错误,服务器没有进行新建或修改数据的操作,该操作是幂等的。
401 Unauthorized - []:表示用户没有权限(令牌、用户名、密码错误)。
403 Forbidden - [] 表示用户得到授权(与401错误相对),但是访问是被禁止的。
404 NOT FOUND - []:用户发出的请求针对的是不存在的记录,服务器没有进行操作,该操作是幂等的。
406 Not Acceptable - [GET]:用户请求的格式不可得(比如用户请求JSON格式,但是只有XML格式)。
410 Gone -[GET]:用户请求的资源被永久删除,且不会再得到的。
422 Unprocesable entity - [POST/PUT/PATCH] 当创建一个对象时,发生一个验证错误。
500 INTERNAL SERVER ERROR - [*]:服务器发生错误,用户将无法判断发出的请求是否成功。

org.springframework.http.ResponseEntit继承org.springframework.http.HttpEntity,用于封装实例和HttpStatus

org.springframework.http.HttpStatus

我们在上一节的例子上进行修改,其它部分不变,仅修改了控制器类。
package com.example.demo;

import java.util.List;
import java.util.Optional;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class UserController {

@Autowired
private UserRepository userRepository;

@CrossOrigin
@GetMapping("/users")
public ResponseEntity<List<User>> findAll() {
    return new ResponseEntity<>(userRepository.findAll(), HttpStatus.OK);
}

@CrossOrigin
@GetMapping("/users/{id}")
public ResponseEntity<User> findOne(@PathVariable(name = "id") long id) {
    Optional<User> optional = userRepository.findById(id);
    return new ResponseEntity<>(optional.get(), HttpStatus.OK);
}

@CrossOrigin
@RequestMapping(value = "/users", method = RequestMethod.POST, headers = "Accept=application/json")
public ResponseEntity<User> addUser(@RequestBody User user) {
    User entity = userRepository.save(user);
    return new ResponseEntity<>(entity, HttpStatus.CREATED);
}

@CrossOrigin
@RequestMapping(value = "/users/{id}", method = RequestMethod.PUT, headers = "Accept=application/json")
public ResponseEntity<User> updateUser(@PathVariable(name = "id") long id, @RequestBody User user) {
    Optional<User> optional = userRepository.findById(id);
    User entity = optional.get();
    entity.setId(user.getId());
    entity.setImgurl(user.getImgurl());
    entity.setName(user.getName());
    entity.setAge(user.getAge());
    User result = userRepository.save(entity);
    return new ResponseEntity<>(result, HttpStatus.CREATED);
}

@RequestMapping(value = "/users/{id}", method = RequestMethod.DELETE, headers = "Accept=application/json")
public ResponseEntity<Object> delete(@PathVariable(name = "id") long id) {
    Optional<User> optional = userRepository.findById(id);
    userRepository.delete(optional.get());
    return new ResponseEntity<>("已删除", HttpStatus.NO_CONTENT);
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值