Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 ResponseEntity 而不返回正文,只设置状态代码和标题。ResponseEntity 是一个泛型类,在这种情况下我是否需要指定类型,如果,应该是什么?
不,你不,只是做这样的事情
ResponseEntity responseEntity = new ResponseEntity(HttpStatus.BAD_REQUEST);
您可以使用return ResponseEntity<Void>
return ResponseEntity<Void>