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);

    }

你可能感兴趣的:(spring-boot,Spring,Boot系列)