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