MyWebMvcConfigurer.java 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.nokia.config.web;
  2. import org.springframework.beans.factory.annotation.Qualifier;
  3. import org.springframework.beans.factory.annotation.Value;
  4. import org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration;
  5. import org.springframework.context.annotation.Bean;
  6. import org.springframework.context.annotation.Configuration;
  7. import org.springframework.web.servlet.DispatcherServlet;
  8. import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
  9. import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
  10. @Configuration
  11. public class MyWebMvcConfigurer implements WebMvcConfigurer {
  12. @Value("${redis.timeoutSeconds:600}")
  13. private Integer timeoutSeconds;
  14. @Override
  15. public void addInterceptors(InterceptorRegistry registry) {
  16. // 添加请求日志拦截
  17. registry.addInterceptor(new RequestLogHandlerInterceptor()).addPathPatterns("/**");
  18. // 添加web登录拦截
  19. registry.addInterceptor(new WebLoginInterceptor(timeoutSeconds)).addPathPatterns("/api/web/**");
  20. }
  21. /**
  22. * 使用自定义DispatcherServlet
  23. */
  24. @Bean
  25. @Qualifier(DispatcherServletAutoConfiguration.DEFAULT_DISPATCHER_SERVLET_BEAN_NAME)
  26. public DispatcherServlet dispatcherServlet() {
  27. return new MyDispatcherServlet();
  28. }
  29. // /**
  30. // * 配置消息转换器
  31. // *
  32. // * @param converters 转换器
  33. // */
  34. // @Override
  35. // public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
  36. // converters.add(mappingJackson2HttpMessageConverter());
  37. // }
  38. //
  39. // /**
  40. // * 配置映射jackson2 http消息转换器
  41. // *
  42. // * @return {@link MappingJackson2HttpMessageConverter}
  43. // */
  44. // @Bean
  45. // public MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter() {
  46. // MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter();
  47. // ObjectMapper mapper = new ObjectMapper();
  48. // mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
  49. // mapper.disable(SerializationFeature.FAIL_ON_EMPTY_BEANS);
  50. // converter.setObjectMapper(mapper);
  51. // return converter;
  52. // }
  53. }