我想用 Spring Boot 实现 DELETE 请求。我试过这个:
@DeleteMapping("remove/{id}")
public ResponseEntity<?> remove(@PathVariable String id) {
return ResponseEntity.ok(transactionNotesService.delete(Long.valueOf(id)))
.orElseGet(() -> notFound().build());
}
但我明白了The method ok(T) in the type ResponseEntity is not applicable for the arguments (void)。
执行 DELETE 时如何修改代码以返回代码 200?
LEATH
大话西游666
萧十郎
相关分类