AdmMiddlewareWebConfigurer.java 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package com.persagy.proxy.common.config;
  2. import com.persagy.dmp.auth.client.EmsSaasWebFallbackFactory;
  3. import com.persagy.dmp.auth.handler.AppContextHandler;
  4. import com.persagy.dmp.auth.service.AuthService;
  5. import com.persagy.proxy.common.service.impl.EmsAuthServiceImpl;
  6. import com.persagy.proxy.common.service.impl.NoneAuthServiceImpl;
  7. import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
  8. import org.springframework.context.annotation.Bean;
  9. import org.springframework.context.annotation.Configuration;
  10. import org.springframework.core.annotation.Order;
  11. import org.springframework.scheduling.annotation.EnableAsync;
  12. import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
  13. import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
  14. /**
  15. * 拦截器
  16. * @author Charlie Yu
  17. * @date 2021-09-13
  18. */
  19. @Configuration
  20. @Order(1)
  21. @EnableAsync
  22. public class AdmMiddlewareWebConfigurer implements WebMvcConfigurer {
  23. @Bean
  24. public AppContextHandler appContextHandler() {
  25. return new AppContextHandler();
  26. }
  27. @Override
  28. public void addInterceptors(InterceptorRegistry registry) {
  29. String[] includePaths = {"/**"};
  30. String[] excludePaths = {"/**/*.html", "/**/*.js", "/**/*.css", "/swagger-resources"};
  31. // 设置拦截的路径、不拦截的路径、优先级等等
  32. registry.addInterceptor(appContextHandler()).order(11).addPathPatterns(includePaths).excludePathPatterns(excludePaths);
  33. }
  34. @Bean
  35. @ConditionalOnProperty(value = "persagy.common.auth.channel", havingValue = "1")
  36. public EmsSaasWebFallbackFactory emsSaasWebFallbackFactory(){
  37. return new EmsSaasWebFallbackFactory();
  38. }
  39. @Bean
  40. @ConditionalOnProperty(value = "persagy.common.auth.channel", havingValue = "1")
  41. public AuthService emsAuthServiceImpl(){
  42. return new EmsAuthServiceImpl();
  43. }
  44. @Bean
  45. @ConditionalOnProperty(value = "persagy.common.auth.channel", havingValue = "-1",matchIfMissing = true)
  46. public AuthService noneAuthServiceImpl(){
  47. return new NoneAuthServiceImpl();
  48. }
  49. }