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

io.camunda.tasklist.spring.ObjectMapperConfiguration Maven / Gradle / Ivy

package io.camunda.tasklist.spring;

import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
@ConditionalOnMissingBean(ObjectMapper.class)
public class ObjectMapperConfiguration {
  @Bean
  @ConditionalOnMissingBean
  public ObjectMapper objectMapper() {
    return new ObjectMapper();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy