-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
Support Spring SSL bundles based on Key Vault JCA #44259
base: main
Are you sure you want to change the base?
Conversation
API change check API changes are not detected in this pull request. |
return; | ||
} | ||
|
||
final AtomicBoolean providerConfigured = new AtomicBoolean(false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why does this need to be an atomic? Seems like there's no concurrency issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since here need a final variable
return; | ||
} | ||
|
||
configureJcaSystemProperties(bundleProperties); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we unset the system properties later?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will update the logic when JCA changed.
Description
Fixes #28243, #35782
Support Spring SSL bundles based on Key Vault JCA, the new starter
spring-cloud-azure-starter-keyvault-jca
is compatible with Spring Boot 3.1+.All SDK Contribution checklist:
General Guidelines and Best Practices
Testing Guidelines