gpt4 book ai didi

java - Spring 休息 : Handling client input errors identified at Domain layer

转载 作者:行者123 更新时间:2023-12-01 04:53:36 26 4
gpt4 key购买 nike

我有一个针对帐户的 REST 服务。 Controller 调用Service层来查找Accounts。 AccountService 可以抛出域异常。通常是与客户端输入错误相关的情况。在这种情况下,我想用 ClientException 包装域异常。有没有一种方法可以向客户端显示状态代码 400 和异常消息?或者是否有更好的方法来处理服务层检测到非法参数的情况?

@Controller
class AccountController
@ResponseBody
@RequestMapping("/accounts/${accountId}")
public Account account(@PathVariable int accountId, HttpServletResponse response){
try{
return accountService.find("Account not found with id: " + accountId);
}catch(Exception e){
response.setStatus(400);
throw new ClientException(e);
}
}
}

class AccountService{
public Account find(int accountId){
if(acountId > 100){
throw new AccountNotFoundException(accountId);
}else{
return new Account(accountId, "someone");
}
}
}

最佳答案

如果这是 REST 服务,那么只需设置响应状态和 JSON 正文(带有错误消息)就足够了。没有真正需要抛出 ClientException。

关于java - Spring 休息 : Handling client input errors identified at Domain layer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14532246/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com