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);
}
}