ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

What’s New in kotlinx.serialization 1.3

https://pbs.twimg.com/card_img/1447513388838498308/EeX5hiqW?format=png&name=small

In this article, we will learn about the major new features that kotlinx.serialization 1.3 brings for developers to manage JSON parsing more efficiently.

Java IO stream-based JSON serialization

We can now read and write JSON directly to network streams or files.

IO stream serialization is currently available only on the JVM platform and for the JSON format.

API includes two main methods:

  • Json.decodeFromStream()
  • Json.encodeToStream()
Java IO stream-based JSON serialization.kt

Property-level control over default value encoding

We can force the library to encode the default values by setting the encodeDefaults property of a Json instance to true:

val format = Json { encodeDefaults = true } // false by default
  • In 1.3.0 we can control it at the property level by using the experimental @EncodeDefault annotation.
  • It has a higher priority level than the encodeDefaults property.

It has two possible values:

The default value is ALWAYS

  • ALWAYS: encodes a property’s default value.
  • NEVER: doesn’t encode the default value regardless of the Json configuration.
Property-level control over default value encoding.kt

Excluding null values from serialization

  • explicitNulls: Another way to reduce the size of the generated JSON Strings is by omitting null values.
  • It defines whether null property values should be included in the Serialized JSON String.
  • It’s true by default, so all nulls are stored as the values of their corresponding properties.
Excluding null values from serialization.kt
  • Missing field exception 🥵

To deserialize objects from JSON with omitted nulls, we need to make sure that Json instance with explicitNulls == false is used.

It sets all omitted nullable properties to null unless they have default values.

  • Try to decode a JSON string with omitted nulls with explicitNulls == true (default) it will throw a MissingFieldException
MissingFieldException.kt
MissingFieldException

Custom polymorphic class discriminators

  • In hierarchy serialization, a useful attribute comes into play — class discriminator.
  • It stores the exact class of the object that was encoded.
  • By default, it has the name type and contains a fully qualified class name of the object being serialized.

In 1.3.0, By using @JsonClassDiscriminator’s discriminator property we can set a custom discriminator name for each class hierarchy.

Custom polymorphic class discriminators.kt

😊😊 👏👏👏👏 HAPPY CODING 👏👏👏👏 😊😊

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Nav Singh

Google Developer Expert for Android | Mobile Software Engineer at Manulife | Organizer at GDG Montreal

Responses (1)

Write a response