31 lines
907 B
Java
31 lines
907 B
Java
package org.baeldung.spring;
|
|
|
|
import java.util.List;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.http.converter.HttpMessageConverter;
|
|
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
|
|
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
|
|
|
@Configuration
|
|
@EnableWebMvc
|
|
@ComponentScan("org.baeldung.web")
|
|
public class WebConfig extends WebMvcConfigurerAdapter {
|
|
|
|
public WebConfig() {
|
|
super();
|
|
}
|
|
|
|
// beans
|
|
|
|
@Override
|
|
public void configureMessageConverters(final List<HttpMessageConverter<?>> converters) {
|
|
super.configureMessageConverters(converters);
|
|
converters.add(new MappingJackson2HttpMessageConverter());
|
|
}
|
|
|
|
//
|
|
|
|
} |