接收到空 dto 时控制器操作的行为
当控制器检测到传递给它的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 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.