用spring反射的时候用e.getMessage得到的是null

现有系统里面用了很多类似如下的打印log的方式:
try {
} catch (Exception e) {
logger.error(e.getMessage());
}
但事实上spring反射调用的时候如果代码中有异常抛出的话是InvocationTagetException类型,而这个类型并没有覆写getMessage()方法,所以现在系统中的log打出来是信息是null,返回null的话没法精准的定位问题,我们需要调用InvocationTargetException 的getTargetException方法得到原始异常如:e.getTargetException().getMessage()。

你可能感兴趣的:(错误汇总及解决办法)