WebMvcConfigurerAdapter在2.x向上过时问题

在spring boot2.x向上,书写配置类时集成的WebMvcConfigurerAdapter会显示此类已经过时。

解决:不继承WebMvcConfigurerAdapter类,该实现WebMvcConfigurer接口,实现同样的功能,且此接口无需实现全部方法。

原文地址:https://www.cnblogs.com/cl-rr/p/9680570.html