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

com.tosan.client.http.sample.restclient.config.AppConfig Maven / Gradle / Ivy

package com.tosan.client.http.sample.restclient.config;

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

@Configuration
public class AppConfig {

    @Bean
    public ObjectMapper objectMapper(){
        return new ObjectMapper();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy