我将Spring MVC用于简单的JSON API,其@ResponseBody基础方法如下所示。(我已经有一个直接生成JSON的服务层。)
@ResponseBody
@RequestMapping(value = "/matches/{matchId}", produces = "application/json") @ResponseBody public String match(@PathVariable String matchId) { String json = matchService.getMatchJson(matchId); if (json == null) { // TODO: how to respond with e.g. 400 "bad request"? } return json; }
问题是,在给定的情况下,最简单,最干净的响应HTTP 400错误的方法是什么?
我确实遇到过类似的方法:
return new ResponseEntity(HttpStatus.BAD_REQUEST);
…但是我不能在这里使用它,因为我的方法的返回类型是String,而不是ResponseEntity。
将返回类型更改为ResponseEntity<>,则可以在下面使用400
ResponseEntity<>
return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
并要求正确
return new ResponseEntity<>(json,HttpStatus.OK);
更新1
在Spring 4.1之后,ResponseEntity中的辅助方法可以用作
ResponseEntity
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(null);
和
return ResponseEntity.ok(json);