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

溫馨提示×

溫馨提示×

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

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

如何解決springboot 2.x 里面訪問靜態資源的問題

發布時間:2021-08-21 13:53:22 來源:億速云 閱讀:112 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關如何解決springboot 2.x 里面訪問靜態資源的問題,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

    springboot 2.x 里面訪問靜態資源的坑

    在spring boot的自定義配置類繼承 WebMvcConfigurationSupport 后,發現自動配置的靜態資源路徑

    classpath:/META/resources/,classpath:/resources/,classpath:/static/,classpath:/public/

    不生效。

    首先看一下 自動配置類的定義:

    如何解決springboot 2.x 里面訪問靜態資源的問題

    這是因為在 springboot的web自動配置類 WebMvcAutoConfiguration 上有條件注解

    @ConditionalOnMissingBean(WebMvcConfigurationSupport.class)

    這個注解的意思是在項目類路徑中 缺少 WebMvcConfigurationSupport類型的bean時改自動配置類才會生效,所以繼承 WebMvcConfigurationSupport 后需要自己再重寫相應的方法。

    如果想要使用自動配置生效

    又要按自己的需要重寫某些方法,比如增加 viewController ,則可以自己的配置類可以繼承 WebMvcConfigurerAdapter 這個類。不過在spring5.0版本后這個類被丟棄了 WebMvcConfigurerAdapter ,雖然還可以用,但是看起來不好。

    /**
     * 原來是這么寫的:
     * public class BeanConfiguration extends WebMvcConfigurationSupport
     * 導致默認配置的靜態資源不生效了
     */
    @Configuration
    public class BeanConfiguration implements WebMvcConfigurer {
        @Bean
        public MappingJackson2HttpMessageConverter jackson2HttpMessageConverter() {
            MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter();
            ObjectMapper mapper = new ObjectMapper();
            mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
            mapper.setDateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));
            mapper.setTimeZone(TimeZone.getTimeZone("GMT+8"));
            mapper.setDefaultPropertyInclusion(JsonInclude.Include.ALWAYS);
            converter.setObjectMapper(mapper);
            return converter;
        }
        @Override
        public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
            //將我們定義的時間格式轉換器添加到轉換器列表中,
            //這樣jackson格式化時候但凡遇到Date類型就會轉換成我們定義的格式
            converters.add(jackson2HttpMessageConverter());
            // 添加字符串轉換,否認如果返回字符串,則會報異常,其他converter 
            // 參考:org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport#addDefaultHttpMessageConverters
            StringHttpMessageConverter stringHttpMessageConverter = new StringHttpMessageConverter();
            stringHttpMessageConverter.setWriteAcceptCharset(false);  // see SPR-7316
            converters.add(stringHttpMessageConverter);
        }
    }

    SpringBoot2.x過后static下的靜態資源無法訪問

    package com.example.thymeleaf.commons; 
    import org.springframework.stereotype.Component;
    import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
    import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
     
    /**
     * 配置靜態資源映射
     *
     * @author sunziwen
     * @version 1.0
     * @date 2018-11-16 14:57
     **/
    @Component
    public class WebMvcConfig implements WebMvcConfigurer {
        /**
         * 添加靜態資源文件,外部可以直接訪問地址
         *
         * @param registry
         */
        @Override
        public void addResourceHandlers(ResourceHandlerRegistry registry) {
            registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
        }
    }

    關于“如何解決springboot 2.x 里面訪問靜態資源的問題”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

    向AI問一下細節

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

    AI

    赤水市| 贵州省| 万载县| 黄骅市| 德兴市| 台南市| 汾阳市| 石门县| 溧水县| 小金县| 沈丘县| 简阳市| 平邑县| 杭锦旗| 泽普县| 布尔津县| 延吉市| 改则县| 安宁市| 黔西县| 开原市| 商洛市| 奉新县| 盐城市| 资阳市| 水城县| 六盘水市| 徐汇区| 昂仁县| 民权县| 枣强县| 潜山县| 屯留县| 修文县| 安义县| 麟游县| 天长市| 营山县| 莒南县| 巴中市| 银川市|