Старый код:
Код: Выделить всё
@PostMapping("/createStudent")
public ResponseEntity createStudent(@RequestBody Student student) {
Student createdStudent = this.studentService.createStudent(student);
return createdStudent;
}
Код: Выделить всё
@PostMapping("/createStudent")
public ResponseEntity createStudent(@RequestBody Student student) {
this.studentService.createAsyncStudent(student);
return new ResponseEntity(new Student(),HttpStatus.OK);
}
В файле есть код обработки ошибок. createAsyncStudent, но как мне вернуть эту информацию об ошибке во внешний интерфейс?
Подробнее здесь: https://stackoverflow.com/questions/772 ... ava-spring
Мобильная версия