Kotlin

Jackson Kotlin extension and reified types

Jackson Kotlin module library is a pleasure to use. It greatly simplifies gnarly code, specifically one’s involving
TypeReference

Consider a sample json which looks like this:

1
2
3
4
5
{
    "a" : ["b", "c"],
    "b" : ["a", "c"],
    "c" : ["a", "b"]
}

This content can be represented as a “Map<List<String>>” type in Java. 

So now, if I were to use straight Java to convert the string to the appropriate type, the code would look like this:

1
2
Map<String, List<String>> result = objectMapper.readValue(json, new TypeReference<>() {
});

What exactly is that “TypeReference” doing there… think of it as a way of making the type parameters of the generic type “Map” which are “String” and “List” available at runtime, without that the types are erased at runtime and Java would not know that it has to create a “Map<String, List<String>>”.

Kotlin can hide this detail behind an extension function which if defined from scratch would look like this:

1
inline fun <reified T> ObjectMapper.readValue(src: String): T = readValue(src, object : TypeReference<T>() {})

and a code using such an extension function:

1
val result: Map<String, List<String>> = objectMapper.readValue(json)

See how all the TypeReference related code is well hidden in the extension function. 

This is the kind of capability that is provided by the
Jackson Kotlin Module With the right packages imported a sample code with this module looks like this:

1
2
3
4
import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
import com.fasterxml.jackson.module.kotlin.readValue
val objectMapper = jacksonObjectMapper()
val result: Map<String, List<String>> = objectMapper.readValue(json)

This is just one of the simplifications offered by the use of the module. It also supports features like Kotlin Data classes, Kotlin built-in types like Pair, Triple etc out of the box.

Highly recommended if you are using Jackson with Kotlin.

Published on Java Code Geeks with permission by Biju Kunjummen, partner at our JCG program. See the original article here: Jackson Kotlin extension and reified types

Opinions expressed by Java Code Geeks contributors are their own.

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button