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 e195892 commit f60d66bCopy full SHA for f60d66b
rmf/rmf-java-base/src/main/java/io/vrap/rmf/base/client/utils/json/JsonUtils.java
@@ -63,6 +63,7 @@ public static ObjectMapper createObjectMapper(final ModuleOptions options) {
63
.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(DeserializationFeature.USE_LONG_FOR_INTS, true)
67
.configure(MapperFeature.REQUIRE_TYPE_ID_FOR_SUBTYPES, false)
68
.build();
69
}
0 commit comments