21 lines
650 B
Java
21 lines
650 B
Java
|
|
package com.label.config;
|
||
|
|
|
||
|
|
import com.label.interceptor.AuthInterceptor;
|
||
|
|
import lombok.RequiredArgsConstructor;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
@RequiredArgsConstructor
|
||
|
|
public class AuthConfig implements WebMvcConfigurer {
|
||
|
|
|
||
|
|
private final AuthInterceptor authInterceptor;
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
||
|
|
registry.addInterceptor(authInterceptor)
|
||
|
|
.addPathPatterns("/**");
|
||
|
|
}
|
||
|
|
}
|