xiaohanzi 5 лет назад
Родитель
Сommit
87e752157f
1 измененных файлов: 5 добавлений и 0 удалений
  1. +5
    -0
      mallinkAdmin/src/main/java/com/iformall/config/WebConfig.java

+ 5
- 0
mallinkAdmin/src/main/java/com/iformall/config/WebConfig.java Просмотреть файл

@@ -6,6 +6,7 @@ import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import com.iformall.interceptor.CurrentTenantInterceptor;
import com.iformall.interceptor.HttpServletRequestWrapperFilter;
import com.iformall.interceptor.RequestInterceptor;
import com.iformall.service.MallResourceService;
@@ -44,6 +45,9 @@ public class WebConfig implements WebMvcConfigurer {

@Autowired
private RequestInterceptor requestInterceptor;
@Autowired
private CurrentTenantInterceptor tenantInterceptor;

@Autowired
private MallResourceService mallResourceService;
@@ -87,6 +91,7 @@ public class WebConfig implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(requestInterceptor).addPathPatterns("/**");
registry.addInterceptor(tenantInterceptor).addPathPatterns("/**");
}

@Override


Загрузка…
Отмена
Сохранить