zxjp
This commit is contained in:
@@ -49,17 +49,17 @@ public class SignValidateFilter implements Filter {
|
||||
Lists.newArrayList(
|
||||
"/web/check/ok",
|
||||
"/check/ok",
|
||||
"/xfsg/doc.html",
|
||||
"/xfsg/favicon.ico",
|
||||
"/xfsg/v2/api-docs","/**/test/**",
|
||||
"/xfsg/mini/program/oss/getUploadFileConfig",
|
||||
"/xfsg/mini/program/v1/partnerManage/partner/getIdentityCardInfo",
|
||||
"/zxjp/doc.html",
|
||||
"/zxjp/favicon.ico",
|
||||
"/zxjp/v2/api-docs","/**/test/**",
|
||||
"/zxjp/mini/program/oss/getUploadFileConfig",
|
||||
"/zxjp/mini/program/v1/partnerManage/partner/getIdentityCardInfo",
|
||||
"/**/swagger*/**",
|
||||
"/**/webjars/**",
|
||||
"/xfsg/mini/program/v1/partnerManage/openArea/areaApplyQuery",
|
||||
"/xfsg/**/api/audit/result",
|
||||
"/xfsg/**/api/license",
|
||||
"/xfsg/mini/line/getRegionPayPic"
|
||||
"/zxjp/mini/program/v1/partnerManage/openArea/areaApplyQuery",
|
||||
"/zxjp/**/api/audit/result",
|
||||
"/zxjp/**/api/license",
|
||||
"/zxjp/mini/line/getRegionPayPic"
|
||||
|
||||
);
|
||||
|
||||
@@ -89,7 +89,7 @@ public class SignValidateFilter implements Filter {
|
||||
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
|
||||
HttpServletRequest request = (HttpServletRequest) servletRequest;
|
||||
String uri = request.getRequestURI();
|
||||
if(uri.startsWith("/xfsg/pc")){
|
||||
if(uri.startsWith("/zxjp/pc")){
|
||||
filterChain.doFilter(servletRequest, servletResponse);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -44,15 +44,15 @@ public class TokenValidateFilter implements Filter {
|
||||
private static List<String> patternList =
|
||||
|
||||
Lists.newArrayList("/web/check/ok","/check/ok",
|
||||
"/xfsg/doc.html","/xfsg/v2/api-docs","/xfsg/favicon.ico","/**/test/**","/xfsg/pc/feiShuLogin","/xfsg/pc/oss/getUploadFileConfig",
|
||||
"/zxjp/doc.html","/zxjp/v2/api-docs","/zxjp/favicon.ico","/**/test/**","/zxjp/pc/feiShuLogin","/zxjp/pc/oss/getUploadFileConfig",
|
||||
"/**/swagger*/**", "/**/webjars/**",
|
||||
//腾讯音视频回调,单独做验签
|
||||
"/xfsg/pc/video/**",
|
||||
"/xfsg/pc/vod/callback",
|
||||
"/xfsg/pc/sysRole/**",
|
||||
"/xfsg/**/api/audit/result",
|
||||
"/xfsg/pc/video/**",
|
||||
"/xfsg/**/api/license"
|
||||
"/zxjp/pc/video/**",
|
||||
"/zxjp/pc/vod/callback",
|
||||
"/zxjp/pc/sysRole/**",
|
||||
"/zxjp/**/api/audit/result",
|
||||
"/zxjp/pc/video/**",
|
||||
"/zxjp/**/api/license"
|
||||
|
||||
|
||||
);
|
||||
@@ -82,7 +82,7 @@ public class TokenValidateFilter implements Filter {
|
||||
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
|
||||
HttpServletRequest reqs = (HttpServletRequest) servletRequest;
|
||||
String uri = reqs.getRequestURI();
|
||||
if(uri.startsWith("/xfsg/mini")){
|
||||
if(uri.startsWith("/zxjp/mini")){
|
||||
filterChain.doFilter(servletRequest, servletResponse);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ spring.application.name=xianfeng-web
|
||||
spring.profiles.active=@profileActive@
|
||||
|
||||
server.port=40000
|
||||
server.servlet.context-path=/xfsg
|
||||
server.servlet.context-path=/zxjp
|
||||
|
||||
#logback
|
||||
logging.config=classpath:logback-spring.xml
|
||||
@@ -55,8 +55,8 @@ wx.pay.merchantId=1670560201
|
||||
wx.pay.privateKeyPath=/opt/apps/coolcollege/apiclient/apiclient_key.pem
|
||||
wx.pay.merchantSerialNumber=66B8E966AFE796BA06006664FCBFBC3F0E2F5A1B
|
||||
wx.pay.apiV3Key=wxpayzhenghu123JKJHkjafWXCertUt1
|
||||
wx.pay.payNotifyUrl=https://abstore-api.coolstore.cn/xfsg/mini/wechatPay/payNotify
|
||||
wx.pay.backNotifyUrl=https://abstore-api.coolstore.cn/xfsg/mini/wechatPay/refundNotify
|
||||
wx.pay.payNotifyUrl=https://abstore-api.coolstore.cn/zxjp/mini/wechatPay/payNotify
|
||||
wx.pay.backNotifyUrl=https://abstore-api.coolstore.cn/zxjp/mini/wechatPay/refundNotify
|
||||
|
||||
aliyun.accessKeyId=LTAI5tQ6QBnWaB5LaJYz6zcD
|
||||
aliyun.accessKeySecret=spqsOgtfr54cwK861O3N3fInydTgjA
|
||||
Reference in New Issue
Block a user