Spring MVC auto-configuration¶
Spring Boot provides auto-configuration for Spring MVC, which works well for most applications and sets up useful defaults^[600-developer__spring__springboot.md].
The auto-configuration adds the following features to the Spring MVC setup^[600-developer__spring__springboot.md]:
ContentNegotiatingViewResolverandBeanNameViewResolver- Support for serving static resources, including WebJars
- Automatic registration of
Converter,GenericConverter, andFormatterbeans - Support for
HttpMessageConverters - Automatic registration of
MessageCodesResolver - Automatic registration of
ConfigurableWebBindingInitializer
Related Concepts¶
- Spring Boot
- [[Spring MVC]]
- [[Converter]]
- [[Formatter]]
Sources¶
^[600-developer__spring__springboot.md]