gpt4 book ai didi

java - GAE 不接受 Jersey 的 WebApplicationException

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:13:51 25 4
gpt4 key购买 nike

public class NotAuthorizedException extends WebApplicationException {
public NotAuthorizedException(String message) {
super(Response.status(Response.Status.BAD_REQUEST).entity(message).type(MediaType.TEXT_PLAIN).build());
}
}

我的资源:

public class MyResource{
@GET
public Book getBook(){
...
throw new NotAuthorizedException("my exception");
}
}

在 GAE 开发服务器中,我的客户端收到 我的异常,这是我所期望的,但在生产模式下,它返回:

<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>400 Bad Request</title>
</head>
<body text=#000000 bgcolor=#ffffff>
<h1>Error: Bad Request</h1>
</body></html>

这似乎是 GAE 默认的 400 错误响应。

提前致谢。

最佳答案

我遇到了类似的问题。您的问题可以通过将“jersey.config.server.response.setStatusOverSendError”设置为 true 来解决。参见 https://stackoverflow.com/a/25894138/1174054了解详情。

关于java - GAE 不接受 Jersey 的 WebApplicationException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23855793/

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