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();
        }
    }
复制代码

 

 

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

 

posted @   意犹未尽  阅读(513)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
点击右上角即可分享
微信分享提示