KissoWebAppConfigurer.kt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.gxzc.zen.umps.config
  2. import com.baomidou.kisso.web.interceptor.SSOPermissionInterceptor
  3. import com.baomidou.kisso.web.interceptor.SSOSpringInterceptor
  4. import org.springframework.context.annotation.Configuration
  5. import org.springframework.web.bind.annotation.ControllerAdvice
  6. import org.springframework.web.servlet.config.annotation.InterceptorRegistry
  7. import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
  8. /**
  9. * kisso配置
  10. * 跳过 swagger-ui 验证
  11. */
  12. @ControllerAdvice
  13. @Configuration
  14. class KissoWebAppConfigurer : WebMvcConfigurerAdapter() {
  15. override fun addInterceptors(registry: InterceptorRegistry) {
  16. // 登录拦截
  17. registry.addInterceptor(SSOSpringInterceptor())
  18. .addPathPatterns("/**")
  19. .excludePathPatterns(
  20. "/auth/login",
  21. "/swagger-ui.html", // swagger-ui html
  22. "/v2/api-docs", // swagger
  23. "/webjars/**", // swagger-ui webjars
  24. "/swagger-resources/**", // swagger-ui resources
  25. "/configuration/**" // swagger configuration
  26. )
  27. // 权限拦截
  28. registry.addInterceptor(SSOPermissionInterceptor().also {
  29. it.authorization = KissoAuthorization()
  30. })
  31. .addPathPatterns("/**")
  32. .excludePathPatterns(
  33. "/auth/login",
  34. "/swagger-ui.html", // swagger-ui html
  35. "/v2/api-docs", // swagger
  36. "/webjars/**", // swagger-ui webjars
  37. "/swagger-resources/**", // swagger-ui resources
  38. "/configuration/**" // swagger configuration
  39. )
  40. // super.addInterceptors(registry)
  41. }
  42. }