1. 程式人生 > >spring boot WebMvcConfigurerAdapter WebMvcConfigurationSupport問題

spring boot WebMvcConfigurerAdapter WebMvcConfigurationSupport問題

使用了攔截器繼承WebMvcConfigurerAdapter正常,靜態資源會載入

在2.0以後WebMvcConfigurerAdapter被廢棄了,使用WebMvcConfigurationSupport靜態資源會無效。很多配置不會自動化

網上的方式是

@Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/**").addResourceLocations("classpath:/static/");
	}

重寫這個方法,但對我不實用,依然無效。做個問題記錄,解決了補充