org.springframework.http.ResponseEntity

简单的 ResponseEntity

new ResponseEntity(HttpStatus.OK)

带数据的 ResponseEntity

new ResponseEntity(new User(),HttpStatus.OK)

org.springframework.http.HttpStatus

创建ResponseEntity 必须用到 org.springframework.http.HttpStatus ,一般情况下,我们会使用到 HttpStatus.OK

在服务层 调用服务层时,可能会判断是否调用成功,这时我们需要创建 HttpStatus.BAD_REQUESTResponseEntity

这时就可以这样判断是否调用成功:

resultEntity.getStatusCode().is2xxSuccessful()

或者判断是否失败:

resultEntity.getStatusCode().is4xxClientError()

你可能感兴趣的:(文档)