序列化Jersey + Jackson的回复

时间:2012-11-20 12:45:22

标签: java rest jersey jackson

我试图了解是否可以将一个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 - &gt;

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);
}

1 个答案:

答案 0 :(得分:0)

而不是绑定MessageBodyWriter(因为你已经有多个)你可以尝试我们在我们的应用程序中做的事情,我们通过以下方式绑定杰克逊作家和Guice中的异常映射器:

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);