我的代码看起来像这样。
@Produces(MediaType.TEXT_XML)
public Response getEmpDetails() {
Map<String, Employee> result = empDaoo.getEmpInfo();
return Response.status(200).entity(result).build();
}
然后我得到这个异常:
SEVERE: Mapped exception to response: 500 (Internal Server Error)
javax.ws.rs.WebApplicationException: com.sun.jersey.api.MessageException: A message body writer for Java class java.util.HashMap, and Java type class java.util.HashMap, and MIME media type text/xml was not found
任何人都可以提供解决方案。快速响应请...