JsonNullable是一个在PHP中常用的对象,它始终具有isPresent值为true的特性。这意味着无论JsonNullable对象是否为空,它都被视为存在。php小编新一将在以下文章中探讨JsonNullable对象的用途和特点,并解释为什么它的isPresent值始终为true。通过深入了解JsonNullable对象,我们可以更好地理解它在PHP开发中的应用和优势。
我有一个 json 格式的文件。它存储我在测试中使用的 json 对象。我使用 objectmapper 将此文件转换为对象,它转换得很好,但有一个问题。对象中的所有字段都有 jsonnullabel 的包装类型。问题如下 - 所有 jsonnullabel 对象,即使它们包含 null 属性值 ispresent = true。因此,“orelse”和“ispresent”方法无法正常工作。我得到了 npe。如何确保从字符串或 json 文件转换时,如果内部存在空值,这些字段等于“false”?
json 示例:
65蜜蜂5661098c我已经为 objectmapper 尝试过这个配置: 对象映射器配置:
ObjectMapper objectMapper = new ObjectMapper(); objectMapper.registerModule(new JavaTimeModule()); objectMapper.registerModule(new Jdk8Module()); objectMapper.registerModule(new JsonNullableModule()); objectMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false); objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); objectMapper.configure(MapperFeature.DEFAULT_VIEW_INCLUSION, false);
尝试在类成员上使用 @jsondeserialize jackson 注释,该注释在 json 中可以为 null ,并且你想要值为“false”而不是 null,如下所示:
public class MyJsonClass { @JsonDeserialize(using = CustomDeserializer.class) public String nullableMember; } public class CustomDeserializer extends StdDeserializer<String> { public CustomDeserializer() { this(null); } public CustomDeserializer(Class<?> vc) { super(vc); } @Override public String deserialize(JsonParser jsonparser, DeserializationContext context) { String text = jsonparser.getText(); if (null == text) { text = "false"; } return text; } }
以上是JsonNullable 对象始终具有 isPresent 值 = true的详细内容。更多信息请关注PHP中文网其他相关文章!