We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
区块链节点升级到2.5版本后,如采用国密SSL连接配置时,启动springboot工程汇报如下错误: javax.net.ssl.SSLException: Failed to initialize the SSLContext: null
查看了下代码: @Autowired private EncryptType encryptType;
@Autowired private EncryptType encryptType;
原来在com.dcits.tbchain.base.autoconfigure.AccountConfig下注入的encryptType,没有起作用,导致后面报错
将该注入调整到com.dcits.tbchain.base.autoconfigure.ServiceConfig后,问题解决。
请验证此处是否确实有问题,还是我这边环境的个别现象
The text was updated successfully, but these errors were encountered:
No branches or pull requests
区块链节点升级到2.5版本后,如采用国密SSL连接配置时,启动springboot工程汇报如下错误:
javax.net.ssl.SSLException: Failed to initialize the SSLContext: null
查看了下代码:
@Autowired private EncryptType encryptType;
原来在com.dcits.tbchain.base.autoconfigure.AccountConfig下注入的encryptType,没有起作用,导致后面报错
将该注入调整到com.dcits.tbchain.base.autoconfigure.ServiceConfig后,问题解决。
请验证此处是否确实有问题,还是我这边环境的个别现象
The text was updated successfully, but these errors were encountered: