|
@@ -23,6 +23,7 @@ public class WebAppConfig implements WebMvcConfigurer {
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
registry.addInterceptor(ucenterInterceptor).addPathPatterns("/**")
|
|
registry.addInterceptor(ucenterInterceptor).addPathPatterns("/**")
|
|
.excludePathPatterns(
|
|
.excludePathPatterns(
|
|
|
|
+ //"/user/virtualOrder/**",
|
|
"/**/sso/**",
|
|
"/**/sso/**",
|
|
"/app/**",
|
|
"/app/**",
|
|
"/test/**",
|
|
"/test/**",
|
|
@@ -30,12 +31,12 @@ public class WebAppConfig implements WebMvcConfigurer {
|
|
"/**/fusion/**",
|
|
"/**/fusion/**",
|
|
"/goods/version/enabled",
|
|
"/goods/version/enabled",
|
|
"/**/scene/**",
|
|
"/**/scene/**",
|
|
- "/intercomMessage/**",
|
|
|
|
- "/user/virtualOrder/**"
|
|
|
|
|
|
+ "/intercomMessage/**"
|
|
);
|
|
);
|
|
|
|
|
|
registry.addInterceptor(appInterceptor).addPathPatterns("/app/**")
|
|
registry.addInterceptor(appInterceptor).addPathPatterns("/app/**")
|
|
.excludePathPatterns(
|
|
.excludePathPatterns(
|
|
|
|
+ //"/app/scene/getAppAllSceneByPage"
|
|
"/app/camera/uploadUserCameraInfo"
|
|
"/app/camera/uploadUserCameraInfo"
|
|
);
|
|
);
|
|
WebMvcConfigurer.super.addInterceptors(registry);
|
|
WebMvcConfigurer.super.addInterceptors(registry);
|