running_l
running_l
### 错误描述 ``` @Bean("rsaAutoCertificateConfig") public RSAAutoCertificateConfig rsaAutoCertificateConfig() { String filePath = Objects.requireNonNull(getClass().getClassLoader().getResource(paymentConfigProperties.getWechatConfig().getPrivateKeyFromPath())).getFile(); return new RSAAutoCertificateConfig.Builder() .merchantId(paymentConfigProperties.getWechatConfig().getMchId()) .privateKeyFromPath(filePath) .merchantSerialNumber(paymentConfigProperties.getWechatConfig().getMerchantSerialNumber()) .apiV3Key(paymentConfigProperties.getWechatConfig().getApiV3Key()) .build(); } ``` Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.wechat.pay.java.core.RSAAutoCertificateConfig]: Factory...