我正在尝试使用 Jackson 反序列化 EnumMap,但遇到以下错误:
javax.ws.rs.client.ResponseProcessingException: com.fasterxml.jackson.databind.JsonMappingException: Can not construct EnumMap; generic (key) type not available
at [Source: org.glassfish.jersey.message.internal.ReaderInterceptorExecutor$UnCloseableInputStream@793ff30f; line: 1, column: 1]
这是我用于键的枚举:
public enum ResultTypeEnum
{
PRESETS,
SUMMARY,
TERMINATION,
TIMESERIES
}
服务器代码是这样的:
@GET
@Path("/results")
@Produces(MediaType.APPLICATION_JSON)
public DiagnoticResults getAllResults() {
try {
return subjectService.onGetAllResults();
} catch (IllegalOperationException ex) {
throw new InternalServerErrorException(ex);
}
}
客户端代码是这样的:
@SuppressWarnings("unchecked")
public EnumMap getAllResults() {
return client.target(subjectURI + "results").request(MediaType.APPLICATION_JSON)
.get(EnumMap.class);
}
诊断结果类是这样的:
public class DiagnoticResults extends EnumMap<ResultTypeEnum, byte[]> {
public DiagnoticResults() {
super(ResultTypeEnum.class);
}
}
这是我从另一个遇到 EnumMap 问题的用户那里编写的类。