SystemProperty Class — spring-boot Architecture
Architecture documentation for the SystemProperty class in ApplicationPidFileWriter.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/ApplicationPidFileWriter.java lines 243–256
private static class SystemProperty implements Property {
private final String[] properties;
SystemProperty(String name) {
this.properties = new String[] { name.toUpperCase(Locale.ENGLISH), name.toLowerCase(Locale.ENGLISH) };
}
@Override
public @Nullable String getValue(SpringApplicationEvent event) {
return SystemProperties.get(this.properties);
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free