泽西通用实体不工作

发布于 2024-11-07 15:23:07 字数 603 浏览 0 评论 0原文

我正在使用 Jersey 的 GenericEntity 以 json 形式返回列表。

但是我收到了异常

A message body writer for Java type, class java.util.Arrays$ArrayList, and MIME media type, application/xml, was not found
16-May-2011 11:16:31 com.sun.jersey.spi.container.ContainerResponse traceException
SEVERE: Mapped exception to response: 500 (Internal Server Error)....

,我知道这意味着 Jersey 未设置为正确映射到 json。

我需要在哪里向球衣提供更多信息。我没有使用 Maven。

破坏的代码是

List<String> list = Arrays.asList("test", "as");
return new GenericEntity<List<String>>(list) {};

I am using Jersey's GenericEntity to return a list as json.

However I'm getting the exception

A message body writer for Java type, class java.util.Arrays$ArrayList, and MIME media type, application/xml, was not found
16-May-2011 11:16:31 com.sun.jersey.spi.container.ContainerResponse traceException
SEVERE: Mapped exception to response: 500 (Internal Server Error)....

I know this means that Jersey is not setup to map to json properly.

Where do I need to give more information to jersey. I am not using Maven.

The code that breaks is

List<String> list = Arrays.asList("test", "as");
return new GenericEntity<List<String>>(list) {};

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

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

发布评论

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

评论(1

初见终念 2024-11-14 15:23:07

GenericEntity 应该以这种方式嵌入到 Response 中:

public Response get() {
    List<String> list = Arrays.asList("test", "as");
    return Response.ok(new GenericEntity<List<String>>(list) {}).build();
}

A GenericEntity is meant to be embedded in a Response that way:

public Response get() {
    List<String> list = Arrays.asList("test", "as");
    return Response.ok(new GenericEntity<List<String>>(list) {}).build();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文