All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.interledger.spsp.server.config.jackson.JacksonConfig Maven / Gradle / Ivy

Go to download

An Interledger SPSP server with a stateless STREAM receiver that publishes events.

The newest version!
package org.interledger.spsp.server.config.jackson;

import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;

@Configuration
public class JacksonConfig {

  @Bean
  @Primary
  protected ObjectMapper objectMapper() {
    return ObjectMapperFactory.create();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy