在传入的JSON中,我有一个符合ISO8601标准的日期时间字段,包含区域偏移量。我想保留这个偏移,但不幸的是Jackson在反序列化这个字段时默认使用GMT / UTC(我从http://wiki.fasterxml.com/JacksonFAQDateHandling了解到这一点)。
@RunWith(JUnit4.class)
public class JacksonOffsetDateTimeTest {
private ObjectMapper objectMapper;
@Before
public void init() {
objectMapper = Jackson2ObjectMapperBuilder.json()
.modules(new JavaTimeModule())
.featuresToDisable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
.build();
}
@Test
public void test() throws IOException {
final String json = "{ \"date\": \"2000-01-01T12:00:00.000-04:00\" }";
final JsonType instance = objectMapper.readValue(json, JsonType.class);
assertEquals(ZoneOffset.ofHours(-4), instance.getDate().getOffset());
}
}
public class JsonType {
private OffsetDateTime date;
// getter, setter
}
我在这里得到的是:
java.lang.AssertionError: expected:<-04:00> but was:<Z>
如何让返回的OffsetDateTime包含原始偏移量?
我在Jackson 2.8.3上。
答案 0 :(得分:16)
将对象映射器更改为此以禁用ADJUST_DATES_TO_CONTEXT_TIME_ZONE。
objectMapper = Jackson2ObjectMapperBuilder.json()
.modules(new JavaTimeModule())
.featuresToDisable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, DeserializationFeature.ADJUST_DATES_TO_CONTEXT_TIME_ZONE)
.build();
答案 1 :(得分:0)
你能试试吗
objectMapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS, false);
根据您链接的常见问题解答,它应该为您提供格式1970-01-01T00:00:00.000+0000
。此格式包含时区偏移量(+0000
)。