1.SpringMvc自动配置

官方文档

27.1.1 Spring MVC auto-configuration

Spring Boot 自动配置好了SpirngMvc

以下是springboot对springmvc的自动配置

  • Inclusion of ContentNegotiatingViewResolver and BeanNameViewResolver beans.
  • 自动配置了视图解析器ViewResolve,根据方法的返回值得到视图对象(view),视图对象决定如何渲染(转发?重定向?))
  • ContentNegotiatingViewResolver:组合所有的视图解析器
  • 如何定制:可以给容器中添加一个视图解析器,ContentNegotiatingViewResolver会自动将其组合进来
  • Support for serving static resources, including support for WebJars (see below). 静态资源文件夹路径wenjars
  • 自动注册了 Converter, GenericConverter, Formatter beans.
  • Converter:转换器,比如public string hello(User user):类型转换使用Converter组件
  • Formatter:格式化器比如2017-12-12===Date对应转化成Date日期类型
  • 举例:
@Bean
    //在文件中配置日期格式化的规则
    @ConditionalOnProperty(prefix="spring.mvc",name="data-format")
    public Formatter<Date> dateFormatter(){
    //日期格式化组件
        return new DateFormatter(this.mvcProperties.getDateFormat());
    }
如果自己想要添加格式化器转换器,只需要放在容器中即可
  • Support for HttpMessageConverters (see below).
  • HttpMessageConverters:SpringMvc用来转换Http请求和响应的。比如User对象以json方式写出去,就需要能把user以json写出去的converter
  • HttpMessageConverters是从容器中确定的,获取所有的HttpMessageConverters

自己给容器中添加HttpMessageConverters,只需要将自己的组件注册到容器中(@Bean,@Component)

  • Static index.html support.静态首页访问
  • Custom Favicon support (see below).favicon.ico
  • Automatic registration of MessageCodesResolver (see below).定义错误代码生成规则的
  • Automatic use of a ConfigurableWebBindingInitializer bean (see below).可以配置一个ConfigurableWebBindingInitializer来替换默认的(添加到容器)
初始化WebDaraBinder
请求数据====JavaBean

org.springframework.boot.autoconfiguration.web:web的所有自动场景;

If you want to keep Spring Boot MVC features, and you just want to add additional MVC configuration (interceptors, formatters, view controllers etc.) you can add your own @Configuration class of type WebMvcConfigurerAdapter, but without @EnableWebMvc. If you wish to provide custom instances of RequestMappingHandlerMapping, RequestMappingHandlerAdapter or ExceptionHandlerExceptionResolver you can declare a WebMvcRegistrationsAdapter instance providing such components.

If you want to take complete control of Spring MVC, you can add your own @Configuration annotated with @EnableWebMvc.

扩展SpringMvc

编写一个配置类(@Configuration注解),是WebMvcConfigurerAdapter类型,不能标注@EnableWebMvc

既保留了所有的自动配置,也能用扩展的配置

//使用这个可以扩展springmvc功能
//标注这是一个配置类
@Configuration
public class MyMvcConfig implements WebMvcConfigurer {
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        //浏览器发送/ncu请求也会来到success.html
        registry.addViewController("/ncu").setViewName("success");
    }
}

原理:

  1. WebMvcAutoConfiguration是springmvc的自动配置类
  2. 在做其他自动配置时会导入一个@Import({WebMvcAutoConfiguration.EnableWebMvcConfiguration.class})
@Configuration(
        proxyBeanMethods = false
    )
    public static class EnableWebMvcConfiguration extends DelegatingWebMvcConfiguration implements ResourceLoaderAware 
    
    
    private final WebMvcConfigurerComposite configurers = new WebMvcConfigurerComposite();

    public DelegatingWebMvcConfiguration() {
    }

    //从容器中获取所有的WebMvcConfigurer
    @Autowired(
        required = false
    )
    public void setConfigurers(List<WebMvcConfigurer> configurers) {
        if (!CollectionUtils.isEmpty(configurers)) {
            this.configurers.addWebMvcConfigurers(configurers);
        }

    }
    
    //比如添加视图的viewcontroller会将所有的WebMvcConfigurer相关配置一起来调用
    
    //public void addViewControllers(ViewControllerRegistry registry) {
        //Iterator var2 = this.delegates.iterator();

       // while(var2.hasNext()) {
           // WebMvcConfigurer delegate = (WebMvcConfigurer)var2.next();
            //delegate.addViewControllers(registry);
       // }

    }
  1. 容器中所有的WebMvcConfigurer都会一起作用
  2. 因此自己写的配置类也会被调用

SpringMvc的自动配置和我们自己扩展的配置都会起作用;

全面接管SpringMvc:

如果对SpringBoot对SpringMvc的配置都不需要了,都是自己配那该怎么办呢?

只需要在自己的配置类中添加 @EnableWebMvc 即可,这样所有的SpringMVC的自动配置会全部失效

原理:

为什么加了一个@EnableWebMvc自动配置就会失效?

@EnableWebMvc会导入一个WebMvcConfigurationSupport组件,
导入的这个组件有一个@ConfitionalOnMissingBean(WebMvcConfigurationSupport.class)(容器中没有这个注解,这个自动配置类才会生效),
而我们通过@EnableWebMvc会导入WebMvcConfigurationSupport这个组件,因此自动配置的会无法生效,导入的WebMvcConfigurationSupport只是SpringMvc的最基本功能