本文主要是介绍springboot 加入@EnableWebMvc不执行converter,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
@Configuration // @EnableWebMvc 不能加入这个注解否则不执行自定义的converter public class MyWebAppConfigurer extends WebMvcConfigurerAdapter{@Bean WXLoginInterceptor WXLoginInterceptor() {return new WXLoginInterceptor(); }@Override public void addInterceptors(InterceptorRegistry registry) { ...... }super.addInterceptors(registry); }
这篇关于springboot 加入@EnableWebMvc不执行converter的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!