亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring boot攔截器WebMvcConfigurerAdapter,以及高版本的替換方案

發布時間:2020-06-24 11:08:19 來源:網絡 閱讀:108550 作者:it林工 欄目:軟件技術

最近項目采用spring icloud,用的spring boot版本是1.5.x的,spring boot 2.0,Spring 5.0 以后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);
  • 新的版本解決方案目前有兩種

    方案1 直接實現WebMvcConfigurer

        @Configuration
    public class WebMvcConfg implements WebMvcConfigurer {
    
            @Override
            public void addViewControllers(ViewControllerRegistry registry) {
                    registry.addViewController("/index").setViewName("index");
            }
    
    }

    方案2 直接繼承WebMvcConfigurationSupport

        @Configuration
    public class WebMvcConfg extends WebMvcConfigurationSupport {
    
            @Override
            public void addViewControllers(ViewControllerRegistry registry) {
                    registry.addViewController("/index").setViewName("index");
            }
    
    }

其實,源碼下WebMvcConfigurerAdapter是實現WebMvcConfigurer接口,所以直接實現WebMvcConfigurer接口也可以;WebMvcConfigurationSupport與WebMvcConfigurerAdapter、接口WebMvcConfigurer處于同一個目錄下WebMvcConfigurationSupport包含WebMvcConfigurer里面的方法,由此看來版本中應該是推薦使用WebMvcConfigurationSupport類的,WebMvcConfigurationSupport應該是新版本中對WebMvcConfigurerAdapter的替換和擴展【個人見解,如果有誤,請幫忙糾正】

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

辽中县| 宝山区| 江山市| 保靖县| 泰顺县| 连云港市| 宿迁市| 宁海县| 安福县| 大悟县| 蓝山县| 成安县| 达州市| 上虞市| 聂荣县| 香河县| 六盘水市| 东阳市| 余庆县| 正定县| 象山县| 南召县| 南溪县| 德阳市| 全州县| 万盛区| 高安市| 栖霞市| 台前县| 石台县| 庆城县| 盐边县| 沭阳县| 盐池县| 九江县| 玉田县| 赣州市| 阿勒泰市| 全州县| 馆陶县| 尤溪县|