将返回类型更改为
ResponseEntity<>,则可以在下面使用400
return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
并要求正确
return new ResponseEntity<>(json,HttpStatus.OK);
更新1
在Spring 4.1之后,
ResponseEntity中的辅助方法可以用作
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(null);
和
return ResponseEntity.ok(json);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)