package de.superx; import java.util.List; import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import org.junit.Ignore; import org.springframework.context.annotation.Configuration; import org.springframework.http.converter.HttpMessageConverter; @Ignore @Configuration @EnableWebMvc public class WebTestConfig implements WebMvcConfigurer { @Override public void extendMessageConverters(List> converters) { converters.add(new MappingJackson2HttpMessageConverter()); } }