SpringBoot從1.5.1→2.2.4項目加包掃雷三:org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter已過時


@Configuration
@Slf4j
@PropertySource({"classpath:/config.properties"})
public class MyWebAppConfigurer extends WebMvcConfigurerAdapter {},這里
WebMvcConfigurerAdapter 依賴org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter

改為從WebMvcConfigurationSupport繼承,相應引用包org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;(推薦)

或改為WebMvcConfigurer實現,相應引用包org.springframework.web.servlet.config.annotation.*

相關包調整:

import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM