MyWebMvcConfigurer.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.example.config.web;
  2. import com.example.service.common.RequestLogService;
  3. import org.springframework.beans.factory.annotation.Qualifier;
  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. private final RequestLogService requestLogService;
  13. public MyWebMvcConfigurer(RequestLogService requestLogService) {
  14. this.requestLogService = requestLogService;
  15. }
  16. @Override
  17. public void addInterceptors(InterceptorRegistry registry) {
  18. // 添加请求日志拦截
  19. registry.addInterceptor(new RequestLogHandlerInterceptor(requestLogService))
  20. .addPathPatterns("/**").excludePathPatterns("/webjars/**", "/doc**", "/v3/**", "/test/**");
  21. }
  22. /**
  23. * 使用自定义DispatcherServlet
  24. */
  25. @Bean
  26. @Qualifier(DispatcherServletAutoConfiguration.DEFAULT_DISPATCHER_SERVLET_BEAN_NAME)
  27. public DispatcherServlet dispatcherServlet() {
  28. return new MyDispatcherServlet();
  29. }
  30. // /**
  31. // * 配置消息转换器
  32. // *
  33. // * @param converters 转换器
  34. // */
  35. // @Override
  36. // public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
  37. // converters.add(mappingJackson2HttpMessageConverter());
  38. // }
  39. //
  40. // /**
  41. // * 配置映射jackson2 http消息转换器
  42. // *
  43. // * @return {@link MappingJackson2HttpMessageConverter}
  44. // */
  45. // @Bean
  46. // public MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter() {
  47. // MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter();
  48. // ObjectMapper mapper = new ObjectMapper();
  49. // mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
  50. // mapper.disable(SerializationFeature.FAIL_ON_EMPTY_BEANS);
  51. // converter.setObjectMapper(mapper);
  52. // return converter;
  53. // }
  54. }