我想从控制器抛出一个异常。我怎样才能做到这一点?
@RequestMapping(value = "user", method = RequestMethod.POST, headers = "Accept=application/xml, application/json")
public @ResponseBody
AppUserDTO registerUser(@RequestBody AppUserDTO userDTO) {
return userService.registerUser(userDTO);
}
在此返回中,它将引发异常。有什么我可以使用的注释吗?异常将如何作为 JSON 传递给客户端?