parent
95740e2349
commit
eed2d65b21
@ -1,16 +1,24 @@
|
||||
package com.mashibing.apipassenger.interceptor;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||||
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||||
@Configuration
|
||||
public class InterceptorConfig implements WebMvcConfigurer {
|
||||
|
||||
@Bean
|
||||
public JwtInterceptor jwtInterceptor(){
|
||||
return new JwtInterceptor();
|
||||
}
|
||||
@Override
|
||||
public void addInterceptors(InterceptorRegistry registry) {
|
||||
registry.addInterceptor(new JwtInterceptor())
|
||||
registry.addInterceptor(jwtInterceptor())
|
||||
// 拦截的路径
|
||||
.addPathPatterns("/**")
|
||||
// 不拦截的路径
|
||||
.excludePathPatterns("/noAuthTest");
|
||||
.excludePathPatterns("/noAuthTest")
|
||||
.excludePathPatterns("/verification-code")
|
||||
.excludePathPatterns("/verification-code-check");
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue