当我的jersey应用程序中的方法返回HashMap
时,我得到以下异常[Exception [EclipseLink-25003] (Eclipse Persistence Services - 2.5.0.v20130507-3faac2b): org.eclipse.persistence.exceptions.XMLMarshalException
Exception Description: An error occurred marshalling the object
Internal Exception: Exception [EclipseLink-25007] (Eclipse Persistence Services - 2.5.0.v20130507-3faac2b): org.eclipse.persistence.exceptions.XMLMarshalException
Exception Description: A descriptor for class java.util.HashMap was not found in the project. For JAXB, if the JAXBContext was bootstrapped using TypeMappingInfo[] you must call a marshal method that accepts TypeMappingInfo as an input parameter.]
有问题的方法是:
@PUT
@Path("/subscriptions/{id}")
@Produces("application/json")
public Map<String, String> updateSubscription(@PathParam("id") int id) {
Map<String, String> response = new HashMap<String, String>();
response.put("status", "ok");
return response;
}
Moxy在我的应用程序中与POJO配合得很好。所以,我猜它处理HashMap足够聪明。
答案 0 :(得分:5)
注意:我是EclipseLink JAXB (MOXy)主管,是JAXB (JSR-222)专家组的成员。
MOXyJsonProvider
目前不支持根级Map
。我刚刚检查了EclipseLink 2.5.2和2.6.0流的修复程序,因此isReadable
/ isWriteable
将为这些类型返回false,以便MOXy不会被选为JSON绑定此用例的提供者。您可以从以下链接下载每晚构建 2013年10月11日:
我还输入了以下增强请求,以便为Map
添加一流的支持: