com.bybutter.sisyphus.starter.jackson.yaml.Jackson2YamlDecoder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sisyphus-jackson-starter Show documentation
Show all versions of sisyphus-jackson-starter Show documentation
Starter for configuring HttpMessageEncoder with Jackson in Sisyphus Framework
package com.bybutter.sisyphus.starter.jackson.yaml
import com.fasterxml.jackson.databind.ObjectMapper
import org.springframework.http.codec.json.AbstractJackson2Decoder
import org.springframework.util.MimeType
class Jackson2YamlDecoder(objectMapper: ObjectMapper, vararg mimeTypes: MimeType) :
AbstractJackson2Decoder(
objectMapper,
*(if (mimeTypes.isEmpty()) Jackson2YamlCodecCustomizer.DEFAULT_YAML_MIME_TYPES else mimeTypes)
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy