ApplicationEnvironment Class — spring-boot Architecture
Architecture documentation for the ApplicationEnvironment class in ApplicationEnvironment.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/ApplicationEnvironment.java lines 31–48
class ApplicationEnvironment extends StandardEnvironment {
@Override
protected @Nullable String doGetActiveProfilesProperty() {
return null;
}
@Override
protected @Nullable String doGetDefaultProfilesProperty() {
return null;
}
@Override
protected ConfigurablePropertyResolver createPropertyResolver(MutablePropertySources propertySources) {
return ConfigurationPropertySources.createPropertyResolver(propertySources);
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free