JAX/Jersey 响应中的自定义错误代码
在 Jersey 中,我们如何“替换”与已知状态代码关联的状态字符串?
例如,
return Response.status(401).build();
生成一个 HTTP 响应,其中包含:
HTTP/1.1 401 Unauthorized
我(不是我,而是客户端应用程序)希望将响应视为:
HTTP/1.1 401 Authorization Required
我尝试了以下方法,但没有成功:
1) 这只是将字符串添加到 HTTP 响应的正文中
return Response.status(401).entity("Authorization Required").build();
2 )也有同样的结果:
ResponseBuilder rb = Response.status(401);
rb = rb.tag("Authorization Required");
return rb.build();
感谢您的帮助!
-spd
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在 Jersey 中执行此操作,您需要使用 WebApplicationException 类的概念。一种方法是简单地扩展此类和所有方法之一来设置返回的错误文本。在您的情况下,这将是:
现在,在实现其余服务的代码中,您只需抛出此类型的新异常,在构造函数中传入文本值即可,例如,
这可以为每个 Web 异常创建一个这样的类,并且以类似的方式抛出。
Jersey 用户指南中也对此进行了解释 - 尽管代码实际上略有不正确:
https://jersey.github.io/nonav/documentation/latest/user-guide.html/#d4e435
To do this in Jersey you have the concept of WebApplicationException class. One method is to simply extend this class and all one of the methods to set the error text that is returned. In your case this would be:
Now in your code that implements the rest service you would simply throw a new exception of this type, passing in the text value in the constructor e.g.
That can create a class like this for each of your web exceptions and throw in a similar fashion.
This is also explained in the Jersey user guide - although the code is actually slightly incorrect:
https://jersey.github.io/nonav/documentation/latest/user-guide.html/#d4e435
我不确定 JSR 339:JAX-RS 2.0:RESTful Web 的 Java API服务是否已经涵盖了这一点。
您可能必须扩展 Response.StatusType 为此。
这里有一些扩展的状态类型。
我就是这样做的。
I'm not sure JSR 339: JAX-RS 2.0: The Java API for RESTful Web Services already covered this or not.
You might have to extend the Response.StatusType for this.
And here are some extended statust types.
This is how I do.