溫馨提示×

溫馨提示×

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

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

如何解決springboot 2.x 里面訪問靜態(tài)資源的問題

發(fā)布時(shí)間:2021-08-21 13:53:22 來源:億速云 閱讀:111 作者:小新 欄目:開發(fā)技術(shù)

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

    springboot 2.x 里面訪問靜態(tài)資源的坑

    在spring boot的自定義配置類繼承 WebMvcConfigurationSupport 后,發(fā)現(xiàn)自動(dòng)配置的靜態(tài)資源路徑

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

    不生效。

    首先看一下 自動(dòng)配置類的定義:

    如何解決springboot 2.x 里面訪問靜態(tài)資源的問題

    這是因?yàn)樵?springboot的web自動(dòng)配置類 WebMvcAutoConfiguration 上有條件注解

    @ConditionalOnMissingBean(WebMvcConfigurationSupport.class)

    這個(gè)注解的意思是在項(xiàng)目類路徑中 缺少 WebMvcConfigurationSupport類型的bean時(shí)改自動(dòng)配置類才會(huì)生效,所以繼承 WebMvcConfigurationSupport 后需要自己再重寫相應(yīng)的方法。

    如果想要使用自動(dòng)配置生效

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

    /**
     * 原來是這么寫的:
     * public class BeanConfiguration extends WebMvcConfigurationSupport
     * 導(dǎo)致默認(rèn)配置的靜態(tài)資源不生效了
     */
    @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) {
            //將我們定義的時(shí)間格式轉(zhuǎn)換器添加到轉(zhuǎn)換器列表中,
            //這樣jackson格式化時(shí)候但凡遇到Date類型就會(huì)轉(zhuǎn)換成我們定義的格式
            converters.add(jackson2HttpMessageConverter());
            // 添加字符串轉(zhuǎn)換,否認(rèn)如果返回字符串,則會(huì)報(bào)異常,其他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下的靜態(tài)資源無法訪問

    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;
     
    /**
     * 配置靜態(tài)資源映射
     *
     * @author sunziwen
     * @version 1.0
     * @date 2018-11-16 14:57
     **/
    @Component
    public class WebMvcConfig implements WebMvcConfigurer {
        /**
         * 添加靜態(tài)資源文件,外部可以直接訪問地址
         *
         * @param registry
         */
        @Override
        public void addResourceHandlers(ResourceHandlerRegistry registry) {
            registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
        }
    }

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

    向AI問一下細(xì)節(jié)

    免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI