晨风

-------------------- 业精于勤,荒于嬉;行成于思,毁于随

导航

拦截器WebMvcConfigurationSupport导致时间格式失效

Posted on 2020-08-18 09:47  shenyixin  阅读(653)  评论(0编辑  收藏  举报

不继承WebMvcConfigurationSupport,改为实现WebMvcConfigurer接口

@Configuration
public class WebInterceptor  implements WebMvcConfigurer {
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new UserHandlerInterceptor()).
                addPathPatterns("/**")
                .excludePathPatterns(
                        "/login"
                );
    }
}