项目作者: arrow-kt

项目描述 :
Λrrow Integrations is part of Λrrow, a functional companion to Kotlin's Standard Library
高级语言: Kotlin
项目地址: git://github.com/arrow-kt/arrow-integrations.git
创建时间: 2020-02-14T17:57:18Z
项目社区:https://github.com/arrow-kt/arrow-integrations

开源协议:Other

下载


Arrow Integrations

Maven Central

Arrow Core logo

Λrrow Integrations is part of Λrrow.

Jackson Module

Include arrow-integrations-jackson in your gradle project:

  1. implementation 'io.arrow-kt:arrow-integrations-jackson-module:${version}'

or, using gradle kotlin-dsl.

  1. implementation("io.arrow-kt:arrow-integrations-jackson-module:${version}")

Include arrow-integrations-jackson in your maven project:

  1. <dependency>
  2. <groupId>io.arrow-kt</groupId>
  3. <artifactId>arrow-integrations-jackson-module</artifactId>
  4. <version>${version}</version>
  5. </dependency>

To register support for arrow datatypes, simply call .registerArrowModule() on the object mapper as follows:

  1. import arrow.integrations.jackson.module.registerArrowModule
  2. import com.fasterxml.jackson.databind.ObjectMapper
  3. import com.fasterxml.jackson.module.kotlin.registerKotlinModule
  4. val mapper = ObjectMapper()
  5. .registerKotlinModule()
  6. .registerArrowModule()

currently supported datatypes:

  • Option<T>
  • NonEmptyList<T> or Nel<T>
  • Either<L, R>
  • Validated<E, A>
  • Ior<L, R>

Example Usage

Serialization and deserialization of data classes that incorporate arrow data types can be
done as follows.

  1. val mapper = ObjectMapper()
  2. .registerKotlinModule()
  3. .registerArrowModule()
  4. .setSerializationInclusion(JsonInclude.Include.NON_ABSENT) // will not serialize None as nulls
  5. data class Organization(val name: String, val address: Option<String>, val websiteUrl: Option<URI>)
  6. data class ArrowUser(val name: String, val emails: NonEmptyList<String>, val organization: Option<Organization>)
  7. val arrowUser = ArrowUser(
  8. "John Doe",
  9. nonEmptyListOf(
  10. "john@email.com",
  11. "john.doe@email.com.au"
  12. ),
  13. Organization("arrow-kt", none(), URI("https://arrow-kt.io").some()).some()
  14. )
  15. mapper.writerWithDefaultPrettyPrinter().writeValueAsString(user)

which serializes as follows.

  1. {
  2. "name" : "John Doe",
  3. "emails" : [ "john@email.com", "john.doe@email.com.au" ],
  4. "organization" : {
  5. "name" : "arrow-kt",
  6. "websiteUrl" : "https://arrow-kt.io"
  7. }
  8. }

Notice that the Option<T> serializer
is configurable via Jackson’s serialization inclusion setting. In this example we have configured the serializer
to not serialize none() as null, but instead omit it completely.

Various serializers / deserializers within arrow module are configurable.
For instance the field names used for serializing / deserializing Either, Validated or Ior can
be configured within the registration step:

  1. val mapper: ObjectMapper = ObjectMapper()
  2. .registerKotlinModule()
  3. .registerArrowModule(
  4. eitherModuleConfig = EitherModuleConfig("left", "right"), // sets the field names for either left / right
  5. validatedModuleConfig = ValidatedModuleConfig("invalid", "valid"), // sets the field names for validated invalid / valid
  6. iorModuleConfig = IorModuleConfig("left", "right") // sets the field names for ior left / right
  7. )
  8. .setSerializationInclusion(JsonInclude.Include.NON_ABSENT) // do not serialize None as nulls

More example usages can be found in ExampleTest.kt

In real world scenarios Jackson can be installed as the json serialization/deserialization
engine. These serializations / deserializations are normally done
automatically.

For instance we can customize our mapper with .registerArrowModule() as follows.

  1. object JsonMapper {
  2. val mapper: ObjectMapper = ObjectMapper()
  3. .registerModule(KotlinModule(singletonSupport = SingletonSupport.CANONICALIZE))
  4. .registerArrowModule()
  5. .disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES)
  6. .disable(JsonParser.Feature.INCLUDE_SOURCE_IN_LOCATION)
  7. .setSerializationInclusion(JsonInclude.Include.NON_ABSENT)
  8. }

This can then be installed accordingly.

Spring Boot

A way to register of arrow data types JSON serialization / deserialization support in spring boot is as follows:

  1. @Configuration
  2. class JacksonConfiguration {
  3. @Bean
  4. @Primary
  5. fun jsonMapper(): ObjectMapper = JsonMapper.mapper
  6. }

When this bean is registered, the object mapper will be used to deserialize incoming and outgoing JSON payload.

Ktor

Jackson support for arrow data type serialization / deserialization can similarly be registered in Ktor as follows:

  1. install(ContentNegotiation) {
  2. register(ContentType.Application.Json, JacksonConverter(JsonMapper.mapper))
  3. }