BeanConfig.java 437 B

1234567891011121314
  1. package com.nokia.config;
  2. import com.fasterxml.jackson.databind.ObjectMapper;
  3. import com.fasterxml.jackson.databind.SerializationFeature;
  4. import org.springframework.context.annotation.Bean;
  5. import org.springframework.context.annotation.Configuration;
  6. @Configuration
  7. public class BeanConfig {
  8. @Bean
  9. public ObjectMapper objectMapper(){
  10. return new ObjectMapper().disable(SerializationFeature.FAIL_ON_EMPTY_BEANS);
  11. }
  12. }