🎨 #3424 【微信支付】加载证书前增加校验,减少不必要的异常日志输出

This commit is contained in:
栈烟 2024-12-03 11:51:57 +08:00 committed by GitHub
parent 915f10157f
commit 3f3c37d286
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -449,7 +449,7 @@ public class WxPayConfig {
*/
private Object[] p12ToPem() {
String key = getMchId();
if (StringUtils.isBlank(key)) {
if (StringUtils.isBlank(key) || StringUtils.isBlank(this.getKeyPath())) {
return null;
}
@ -466,7 +466,7 @@ public class WxPayConfig {
X509Certificate x509Certificate = (X509Certificate) certificate;
return new Object[]{privateKey, x509Certificate};
} catch (Exception e) {
log.error("加载证书时发生异常", e);
log.error("加载p12证书时发生异常", e);
}
return null;