|
@@ -1,7 +1,7 @@
|
|
|
package com.zy.bms.config;
|
|
|
|
|
|
import com.zy.bms.config.interceptor.OperateAuthInterceptor;
|
|
|
-import com.zy.bms.config.interceptor.UbiAppAuthInterceptor;
|
|
|
+import com.zy.bms.config.interceptor.WxAppAuthInterceptor;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
import org.springframework.context.annotation.Profile;
|
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
|
@@ -22,7 +22,7 @@ import java.util.List;
|
|
|
public class InterceptorCfg implements WebMvcConfigurer {
|
|
|
|
|
|
@Resource
|
|
|
- private UbiAppAuthInterceptor ubiAppAuthInterceptor;
|
|
|
+ private WxAppAuthInterceptor wxAppAuthInterceptor;
|
|
|
@Resource
|
|
|
private OperateAuthInterceptor operateAuthInterceptor;
|
|
|
// 白名单
|
|
@@ -30,7 +30,7 @@ public class InterceptorCfg implements WebMvcConfigurer {
|
|
|
|
|
|
static {
|
|
|
whiteList.add("/bms/api/operate/admin/login.do");
|
|
|
- whiteList.add("/bms/api/operate/user/login.do");
|
|
|
+ whiteList.add("/bms/api/wx_app/login.do");
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -38,8 +38,9 @@ public class InterceptorCfg implements WebMvcConfigurer {
|
|
|
*/
|
|
|
@Override
|
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
|
|
- registry.addInterceptor(ubiAppAuthInterceptor)
|
|
|
- .addPathPatterns("/bms/api/wx_app/**");
|
|
|
+ registry.addInterceptor(wxAppAuthInterceptor)
|
|
|
+ .addPathPatterns("/bms/api/wx_app/**")
|
|
|
+ .excludePathPatterns(whiteList);
|
|
|
|
|
|
registry.addInterceptor(operateAuthInterceptor)
|
|
|
.addPathPatterns("/bms/api/operate/**")
|