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
Spring Framework has logic in SystemEnvironmentPropertySource.resolvePropertyName which is applied each time the property is accessed. For configuration properties, this logic should not be required since we directly calculate the mappings. If we obtain system environment properties directly from the source, we will potentially save one String.toUpperCase call, three String.replace calls and four calls to access the property.
The text was updated successfully, but these errors were encountered:
Spring Framework has logic in
SystemEnvironmentPropertySource.resolvePropertyName
which is applied each time the property is accessed. For configuration properties, this logic should not be required since we directly calculate the mappings. If we obtain system environment properties directly from thesource
, we will potentially save oneString.toUpperCase
call, threeString.replace
calls and four calls to access the property.The text was updated successfully, but these errors were encountered: