|
|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package cn.iocoder.mall.user.application.config;
|
|
|
|
|
|
|
|
|
|
import cn.iocoder.common.framework.config.GlobalExceptionHandler;
|
|
|
|
|
import cn.iocoder.mall.admin.sdk.interceptor.AdminSecurityInterceptor;
|
|
|
|
|
import cn.iocoder.mall.user.sdk.interceptor.UserSecurityInterceptor;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
@ -13,15 +14,18 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
|
@EnableWebMvc
|
|
|
|
|
@Configuration
|
|
|
|
|
@Import(value = {GlobalExceptionHandler.class, // 统一全局返回
|
|
|
|
|
UserSecurityInterceptor.class}) // 安全拦截器,实现认证和授权功能。
|
|
|
|
|
UserSecurityInterceptor.class, AdminSecurityInterceptor.class}) // 安全拦截器,实现认证和授权功能。
|
|
|
|
|
public class MVCConfiguration implements WebMvcConfigurer {
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private UserSecurityInterceptor securityInterceptor;
|
|
|
|
|
@Autowired
|
|
|
|
|
private AdminSecurityInterceptor adminSecurityInterceptor;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
|
|
|
registry.addInterceptor(securityInterceptor).addPathPatterns("/user/**", "/admin/**"); // 只拦截我们定义的接口
|
|
|
|
|
registry.addInterceptor(securityInterceptor).addPathPatterns("/users/**"); // 只拦截我们定义的接口
|
|
|
|
|
registry.addInterceptor(adminSecurityInterceptor).addPathPatterns("/admins/**"); // 只拦截我们定义的接口
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|