getSystemEnvironmentProperty() — spring-boot Function Reference
Architecture documentation for the getSystemEnvironmentProperty() function in SpringIterableConfigurationPropertySource.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD bd901e93_9053_febe_1368_13a8703ecbb8["getSystemEnvironmentProperty()"] fa688648_23e4_8371_2f89_4802a70f8b28["getSystemEnvironmentProperty()"] fa688648_23e4_8371_2f89_4802a70f8b28 -->|calls| bd901e93_9053_febe_1368_13a8703ecbb8 fa688648_23e4_8371_2f89_4802a70f8b28["getSystemEnvironmentProperty()"] bd901e93_9053_febe_1368_13a8703ecbb8 -->|calls| fa688648_23e4_8371_2f89_4802a70f8b28 c08472d1_0523_dcc9_5df2_017ca9268c5a["get()"] bd901e93_9053_febe_1368_13a8703ecbb8 -->|calls| c08472d1_0523_dcc9_5df2_017ca9268c5a style bd901e93_9053_febe_1368_13a8703ecbb8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySource.java lines 351–357
@Nullable Object getSystemEnvironmentProperty(String name) {
Data data = this.data;
Assert.state(data != null, "'data' must not be null");
Map<String, Object> systemEnvironmentCopy = data.systemEnvironmentCopy();
Assert.state(systemEnvironmentCopy != null, "'systemEnvironmentCopy' must not be null");
return systemEnvironmentCopy.get(name);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getSystemEnvironmentProperty() do?
getSystemEnvironmentProperty() is a function in the spring-boot codebase.
What does getSystemEnvironmentProperty() call?
getSystemEnvironmentProperty() calls 2 function(s): get, getSystemEnvironmentProperty.
What calls getSystemEnvironmentProperty()?
getSystemEnvironmentProperty() is called by 1 function(s): getSystemEnvironmentProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free