如何在 ResponseEntity 中返回布尔值?
Posted
技术标签:
【中文标题】如何在 ResponseEntity 中返回布尔值?【英文标题】:How to return boolean value in ResponseEntity? 【发布时间】:2019-12-17 09:44:37 【问题描述】:控制器代码如下:
@PutMapping("/update-student")
public ResponseEntity<Student>updateStudent(@RequestBody Student student)throws Exception
boolean getStudent = studentService.updateStudent(student);
return new ResponseEntity<Student>(getStudent,HttpStatus.OK);
【问题讨论】:
返回布尔值的用例是什么?如果你想在学生的保存/更新失败的情况下返回false
,你最好返回一个错误代码。
【参考方案1】:
您正在返回 ResponseEntity
类型的 Student
(ResponseEntity<Student>
)
要返回 Boolen,您必须执行类似的操作
ResponseEntity<Boolean>
.
【讨论】:
以上是关于如何在 ResponseEntity 中返回布尔值?的主要内容,如果未能解决你的问题,请参考以下文章