美文网首页
SpringBoot 1.5.x和2.0.x区别

SpringBoot 1.5.x和2.0.x区别

作者: 在努力中 | 来源:发表于2018-11-19 10:20 被阅读0次

    1、手动配置mvc框架,1.5.可以在配置类中继承抽象类 WebMvcConfigurerAdapter

    以下是 WebMvcConfigurerAdapter 重写的方法

    /** 解决跨域问题 **/
    public void addCorsMappings(CorsRegistry registry) ;
    /** 添加拦截器 **/
    void addInterceptors(InterceptorRegistry registry);
    /** 这里配置视图解析器 **/
    void configureViewResolvers(ViewResolverRegistry registry);
    /** 配置内容裁决的一些选项 **/
    void configureContentNegotiation(ContentNegotiationConfigurer configurer);
    /** 视图跳转控制器 **/
    void addViewControllers(ViewControllerRegistry registry);
    /** 静态资源处理 **/
    void addResourceHandlers(ResourceHandlerRegistry registry);
    /** 默认静态资源处理器 **/
    void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer);
    

    2.0.x已被废除,实现接口WebMvcConfigurer或者直接继承WebMvcConfigurationSupport

    直接继承WebMvcConfigurationSupport

    相关文章

      网友评论

          本文标题:SpringBoot 1.5.x和2.0.x区别

          本文链接:https://www.haomeiwen.com/subject/qaunaftx.html