如何从 OData Producer 返回 404 错误?
我有一个 OData Producer(使用 odata4j Java)。 在 getEntities() 方法中,我检查元数据文档中是否存在提供的实体名称。 如果名称不存在,我想返回 http 404 错误 - 未找到。
当生产者应返回 EntitiesResponse 对象时,如何返回此错误? 构建/返回错误的方式是什么。
I have an OData Producer (using odata4j Java).
In the getEntities() method I check that the entity name supplied exists in the meta-data document.
If the name is not present I want to return a http 404 error - Not Found.
How do I return this error when the producer is due to return a EntitiesResponse object?
What's the way of building/returning errors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前(从版本 0.5 开始),您可以抛出 NotFoundException。
希望有帮助,
-约翰
Currently (as of version 0.5), you can throw NotFoundException.
Hope that helps,
- john