zoukankan      html  css  js  c++  java
  • java陷阱之无法捕获异常问题

    加载支付配置的config类

    @Slf4j
    public class CenterPayConfig {
        private static Properties conf = null;
        private final static String propertiesFilePath = "/centerpay_v2.properties";
    
        private static CenterPayConfig instance = new CenterPayConfig();
        public static CenterPayConfig newInstance() {
            return instance;
        }
    
        private CenterPayConfig() {
    
        }
        static {
            log.info("开始加载支付中心v2相关配置");
            try {
                conf = new Properties();
                InputStream in = CenterPayConfig.class.getClassLoader().getResourceAsStream(propertiesFilePath);
                conf.load(in);
            }catch(IOException e){
                log.error("加载支付中心v2文件失败",e);
                e.printStackTrace();
            }
        }
    
    }

    使用

    try {
               String  url= CenterPayConfig.newInstance().getUrl();
                ........
            }
            catch (Exception e){
                logger.error("主动查询异常:{}",paymentCode,e);
                jsonResult=new JsonResult(904,"扫码支付异常,请尝试使用app支付或者公众号支付");
            }

    如果抛出非IOException  使用的地方并不能捕获导致,导致异常但是没有异常日志 无法排查  ,所以将IOException 改成Exception

     static {
            log.info("开始加载支付中心v2相关配置");
            try {
                conf = new Properties();
                InputStream in = CenterPayConfig.class.getClassLoader().getResourceAsStream(propertiesFilePath);
                conf.load(in);
            }catch(IOException e){
                log.error("加载支付中心v2文件失败",e);
                e.printStackTrace();
            }catch (Exception e){
                log.error("加载支付中心v2文件异常",e);
                e.printStackTrace();
            }
        }

    记录一下 如果出现自己怀疑有异常又没有捕获的情况 可以考虑 此场景

  • 相关阅读:
    Wannafly挑战赛21A
    luoguP4000 斐波那契数列
    关于斐波那契数模意义下的循环节问题
    Codeforces Round #501 (Div. 3) F. Bracket Substring
    1257: [CQOI2007]余数之和
    51nod1380 夹克老爷的逢三抽一
    51nod1423 最大二"货" 单调栈
    51nod1624 取余最长路 前缀和 + set
    51nod1437 迈克步 单调栈
    51nod1515 明辨是非 并查集 + set
  • 原文地址:https://www.cnblogs.com/LQBlog/p/15174684.html
Copyright © 2011-2022 走看看