You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line: 70 protected SslBundle getBundle() { if (ssl.getSslBundle() == null || ssl.getSslBundle().length() > 0) { return null; } if (bundles.getBundleNames().contains(ssl.getSslBundle())) { return bundles.getBundle(ssl.getSslBundle()); } return null;
Is there a problem with the judgment of this line of source code?
if (ssl.getSslBundle() == null || ssl.getSslBundle().length() > 0)
java file:
org.springframework.cloud.gateway.config.AbstractSslConfigurer.java
Line: 70
protected SslBundle getBundle() { if (ssl.getSslBundle() == null || ssl.getSslBundle().length() > 0) { return null; } if (bundles.getBundleNames().contains(ssl.getSslBundle())) { return bundles.getBundle(ssl.getSslBundle()); } return null;
Is there a problem with the judgment of this line of source code?
if (ssl.getSslBundle() == null || ssl.getSslBundle().length() > 0)
spring cloud version : 2024.0.0
my application.properties
`
spring.ssl.bundle.jks.myclient.keystore.location=classpath:keystore.p12
spring.ssl.bundle.jks.myclient.keystore.password=123456
spring.ssl.bundle.jks.myclient.keystore.type=PKCS12
spring.ssl.bundle.jks.myclient.truststore.location=classpath:truststore.p12
spring.ssl.bundle.jks.myclient.truststore.password=123456
spring.ssl.bundle.jks.myclient.truststore.type=PKCS12
spring.cloud.gateway.httpclient.ssl.ssl-bundle=myclient
`
The text was updated successfully, but these errors were encountered: