We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f83ccd3 commit 4f1b9b2Copy full SHA for 4f1b9b2
rmf/rmf-java-base/src/main/java/io/vrap/rmf/base/client/utils/json/JsonUtils.java
@@ -60,7 +60,7 @@ public static ObjectMapper createObjectMapper(final ModuleOptions options) {
60
.addModule(new LocalDateDeserializationModule()) //custom deserializer for LocalDate
61
.addModules(loader)
62
.addModules(moduleList)
63
- .serializationInclusion(JsonInclude.Include.NON_NULL)
+ .serializationInclusion(JsonInclude.Include.NON_NULL) //ignore null fields
64
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
65
.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false)
66
.configure(MapperFeature.REQUIRE_TYPE_ID_FOR_SUBTYPES, false)
0 commit comments