0

我试图了解是否可以将 java Map 序列化为来自 Jersey 的 Json 响应。

这是我的服务:

@Singleton
@Path("/")
public class ApiServiceResource {
    @Inject
    ISeedingUpdateService seedingUpdateService;

    @GET
    @Produces(MediaType.APPLICATION_JSON)
    @Path("/map")
    public List<String> getMap() {
        return newArrayList(seedingUpdateService.toString());
    }
    @GET
    @Produces(MediaType.APPLICATION_JSON)
    @Path("/pojo")
    public TemplateMessage getTemplateMessage(@PathParam("param") String param) {
        return new TemplateMessage(param, seedingUpdateService.toString());
    }

    @XmlRootElement
    public static class TemplateMessage {
        public Map<String,String > param;
        public TemplateMessage() {
        }
        public TemplateMessage(String param1, String param2) {
            this.param = newHashMap();
            this.param.put(param1,param2);
        }
    }
}

getMap 方法失败,因为它无法序列化 Map -->

SEVERE: The registered message body writers compatible with the MIME media type are:
application/json ->
  com.sun.jersey.json.impl.provider.entity.JSONJAXBElementProvider$App
  com.sun.jersey.json.impl.provider.entity.JSONArrayProvider$App
  com.sun.jersey.json.impl.provider.entity.JSONObjectProvider$App
  com.sun.jersey.json.impl.provider.entity.JSONRootElementProvider$App
  com.sun.jersey.json.impl.provider.entity.JSONListElementProvider$App
*/* ->

第二种方法工作得很好,POJO 是用里面的 Map 序列化的。

有什么我想念的吗?

顺便说一下,应用程序是在 Guice 中配置的,所以这里是 guice 配置:

@Override
protected void configureServlets() {
    bind(ApiServiceResource.class);
    /* bind jackson converters for JAXB/JSON serialization */
    bind(MessageBodyReader.class).to(JacksonJsonProvider.class);
    bind(MessageBodyWriter.class).to(JacksonJsonProvider.class);
    Map<String,String> parameters = newHashMap();
    parameters.put("com.sun.jersey.config.property.packages", "com.delver.update.api");
    serve("/rest/*").with(GuiceContainer.class, parameters);
}
4

1 回答 1

0

您可以尝试我们在我们的应用程序中执行的操作,而不是绑定MessageBodyWriter(因为您已经拥有多个),我们通过以下方式在 Guice 中绑定 Jackson 编写器和异常映射器:

bind(forName("com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider")).in(Scopes.SINGLETON);
bind(forName("com.fasterxml.jackson.jaxrs.json.JsonParseExceptionMapper")).in(Scopes.SINGLETON);
bind(forName("com.fasterxml.jackson.jaxrs.json.JsonMappingExceptionMapper")).in(Scopes.SINGLETON);
于 2012-11-20T13:08:09.243 回答