Escape asterisk character - #1722
Merged
ryanjbaxter merged 3 commits intoAug 13, 2026
Merged
Conversation
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
ryanjbaxter
requested changes
Aug 13, 2026
| When a `@ConfigurationProperties` bean is re-bound, its properties are first reset to their class-level defaults so that values for properties that have been removed from the `Environment` do not linger. | ||
| This reset also recurses into nested `@ConfigurationProperties` objects (for example a nested object that has no setter). | ||
| To avoid descending into object graphs that are not configuration properties, the reset never recurses into JDK types or types in the standard `jakarta.*` and `javax.*` API namespaces. | ||
| To avoid descending into object graphs that are not configuration properties, the reset never recurses into JDK types or types in the standard `jakarta.\*` and `javax.*` API namespaces. |
Contributor
There was a problem hiding this comment.
The * in the java.* needs to be escaped too, right?
Contributor
Author
There was a problem hiding this comment.
I ran it on my local machine, and java.* doesn’t need to be escaped. But to be safe, I think we should escape it anyway.
Contributor
There was a problem hiding this comment.
I was wrong, I fixed it and removed them, sorry about that!
| == Configuring Individual LoadBalancerClients | ||
|
|
||
| Individual Loadbalancer clients may be configured individually with a different prefix `spring.cloud.loadbalancer.clients.<clientId>.*` where `clientId` is the name of the loadbalancer. Default configuration values may be set in the `spring.cloud.loadbalancer.*` namespace and will be merged with the client specific values taking precedence | ||
| Individual Loadbalancer clients may be configured individually with a different prefix `spring.cloud.loadbalancer.clients.<clientId>.\*` where `clientId` is the name of the loadbalancer. Default configuration values may be set in the `spring.cloud.loadbalancer.*` namespace and will be merged with the client specific values taking precedence |
Contributor
There was a problem hiding this comment.
Same here, I believe the * in spring.cloud.loadbalancer.* needs to be escaped
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reference