WebMvcConfigurerAdapter @deprecated 弃用

SPRING 5.0

Spring MVC 5.0 框架中,弃用了

org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter

WebMvcConfigurerAdapter 推荐使用以下两种方式替用

方式一:继承org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport

例如:
 

@Configuration
public class WebMvcConfg extends WebMvcConfigurationSupport {

        //你的其他配置,重写方法后配置

}

方式二:直接实现接口org.springframework.web.servlet.config.annotation.WebMvcConfigurer

例如:

@Configuration
public class WebMvcConfg implements WebMvcConfigurer {

    //你的具体实现及配置

}

 

原创文章,作者:sunnyman218,如若转载,请注明出处:https://blog.ytso.com/243731.html

(0)
上一篇 2022年4月11日
下一篇 2022年4月11日

相关推荐

发表回复

登录后才能评论