Home / Class/ SystemEnvironmentConfigDataLoader Class — spring-boot Architecture

SystemEnvironmentConfigDataLoader Class — spring-boot Architecture

Architecture documentation for the SystemEnvironmentConfigDataLoader class in SystemEnvironmentConfigDataLoader.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/SystemEnvironmentConfigDataLoader.java lines 29–41

class SystemEnvironmentConfigDataLoader implements ConfigDataLoader<SystemEnvironmentConfigDataResource> {

	@Override
	public ConfigData load(ConfigDataLoaderContext context, SystemEnvironmentConfigDataResource resource)
			throws IOException, ConfigDataResourceNotFoundException {
		List<PropertySource<?>> loaded = resource.load();
		if (loaded == null) {
			throw new ConfigDataResourceNotFoundException(resource);
		}
		return new ConfigData(loaded);
	}

}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free