我试图了解是否可以将 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);
}