Просмотр исходного кода

无车优化,自有车接口返回

Administrator 3 лет назад
Родитель
Сommit
5c82dc4fee

+ 1 - 0
src/main/java/com/jkcredit/invoice/component/StatisRequestIdTimeComp.java

@@ -57,6 +57,7 @@ public class StatisRequestIdTimeComp {
                 for(Map.Entry<String,Long> entry:map.entrySet()){
                     if(currTime-entry.getValue()>costTimeAtten*1000){
                         count++;
+                        log.info("耗时requestid************"+entry.getKey()+"***************"+(currTime-entry.getValue()));
                     }
                 }
                 if(count>limitCount){

+ 95 - 12
src/main/java/com/jkcredit/invoice/credit/InterfaceCheckServer.java

@@ -39,32 +39,82 @@ public class InterfaceCheckServer {
 
             //----------------------------自有车、无车公共接口---------------------------------//
             case "COMPANY_ADD_V1"://无车、自有车企业注册
-                result = customerInterLowerService.customeInterRec(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = customerInterLowerService.customeInterRec(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "PROTOCOL_ADD_V1"://无车、自有车协议上传
-                result = customerInterLowerService.customeProtocolUpLoad(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = customerInterLowerService.customeProtocolUpLoad(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "COMPANY_QUERY_V1"://无车、自有车企业查询
-                result = customerInterLowerService.customeInterRecQuery(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = customerInterLowerService.customeInterRecQuery(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
 
 
 
                 //----------------------------自有车下游接口---------------------------------//
             case "CARD_BIND_QUERY_LIST_V1"://自有车 用户卡列表查询
-                result = selfCarInterService.customerETCQuery(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = selfCarInterService.customerETCQuery(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "CARD_QUERY_CARD_V1"://自有车 卡信息查询
-                result = selfCarInterService.customerQueryEtcInfo(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = selfCarInterService.customerQueryEtcInfo(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "CARD_BINDING_V1"://自有车 下发短信验证码
-                result = selfCarInterService.customerETCRec(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = selfCarInterService.customerETCRec(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "CARD_VALID_CODE_V1"://自有车 卡绑定接口 渠道调用此接口,上传用户收到的短信验证码
-                result = selfCarInterService.customerETCRecValid(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = selfCarInterService.customerETCRecValid(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "CARD_TRADE_V1"://自有车 交易查询接口 渠道通过此接口可以查询单张卡连续90天内的交易(待开票、开票中、已开票)
                 if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
                     result = resultTimeOut;
                 }else{
                     statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
@@ -74,6 +124,7 @@ public class InterfaceCheckServer {
                 break;
             case "B2B_INVOICE_APPLY_V1"://自有车 申请开票接口 渠道通过此接口可以对该公司绑定的单张卡连续90天内的交易进行开票。
                 if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
                     result = resultTimeOut;
                 }else{
                     statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
@@ -83,6 +134,7 @@ public class InterfaceCheckServer {
                 break;
             case "B2B_INVOICE_QUERY_V1"://自有车 已开发票查询接口 渠道通过此接口可以根据该公司绑定的单张卡查询此卡在某个月开具的发票。
                 if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
                     result = resultTimeOut;
                 }else{
                     statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
@@ -91,7 +143,14 @@ public class InterfaceCheckServer {
                 }
                 break;
             case "B2B_INVOICE_PACKAGE_V1"://自有车 发票下载 渠道通过此接口可以下载某公司某个月份开具的发票。
-                result = selfCarInterService.getSelfCarInvoicePackage(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    log.info(appKey+"被拒绝");
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = selfCarInterService.getSelfCarInvoicePackage(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "CARD_UNBIND_V1"://自有车 卡解绑接口。
                 result = selfCarInterService.customerCarUnRec(appKey,api,data,requestid);
@@ -102,7 +161,13 @@ public class InterfaceCheckServer {
 
             //----------------------------无车下游接口---------------------------------//
             case "VEHICLE_REGISTER"://无车 车辆备案接口
-                result = noCarInterService.customerCarRec(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = noCarInterService.customerCarRec(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "VEHICLE_REGISTER_QUERY"://无车 车辆备案查询接口
                 result = noCarInterService.customeRecUpperQuery(appKey,api,data,requestid);
@@ -144,13 +209,31 @@ public class InterfaceCheckServer {
                 }
                 break;
             case "WAY_BILL_NUM_FIND_INVOICE"://无车  运单号查询发票数据
-                result = noCarInterService.noCarVoiceQuery(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = noCarInterService.noCarVoiceQuery(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "FIND_NO_SEARCH_NUM"://无车  获取未查询过发票的运单编号
-                result = noCarInterService.noCarNoVoiceQuery(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = noCarInterService.noCarNoVoiceQuery(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             case "BALANCE_QUERY"://无车   账号余额查询接口
-                result = noCarInterService.balanceQuery(appKey,api,data,requestid);
+                if(StatisRequestIdTimeComp.isLimit){
+                    result = resultTimeOut;
+                }else{
+                    statisRequestIdTimeComp.putReQuestIdAndTime(requestid);
+                    result = noCarInterService.balanceQuery(appKey,api,data,requestid);
+                    statisRequestIdTimeComp.removeReQuestIdAndTime(requestid);
+                }
                 break;
             default:
                 result = null;