接收到空 dto 时控制器操作的行为

发布于 2024-08-14 21:40:16 字数 81 浏览 8 评论 0原文

当控制器检测到传递给它的 DTO 为 null 时,它是否应该实例化 DTO 的实例(参见空对象模式),还是应该立即抛出异常?

谢谢

When a controller detects that a DTO passed to it is null should it instantiate an instance of the DTO (cf the Null Object Pattern), or should it simply throw an exception there and then?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

A君 2024-08-21 21:40:16

如果 null 意味着你可以实例化一个 Null 对象并以默认方式操作,那就可以了。
如果 null 对控制器有意义,请处理这种情况。
如果 null 对控制器没有意义,则抛出异常。

If null means that you can instantiate a Null Object and act in a default way, it's ok.
If null makes any sense to the controller, handle this case.
If null makes no sense to the controller, throw an exception.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文