Home / Function/ load() — spring-boot Function Reference

load() — spring-boot Function Reference

Architecture documentation for the load() function in LogbackConfigurationAotContributionTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  e24e2ad8_3e06_59e8_9128_fb1e09cbaca6["load()"]
  be5bc046_7461_44c1_eb40_bbe86152e3c0["contributionOfBasicModel()"]
  be5bc046_7461_44c1_eb40_bbe86152e3c0 -->|calls| e24e2ad8_3e06_59e8_9128_fb1e09cbaca6
  fa142e9e_de13_1337_1940_da7418acee36["contributionOfBasicModelThatMatchesExistingModel()"]
  fa142e9e_de13_1337_1940_da7418acee36 -->|calls| e24e2ad8_3e06_59e8_9128_fb1e09cbaca6
  a4e59932_0c46_9ea8_18b5_f91e259b16c7["patternRulesAreStoredAndRegisteredForReflection()"]
  a4e59932_0c46_9ea8_18b5_f91e259b16c7 -->|calls| e24e2ad8_3e06_59e8_9128_fb1e09cbaca6
  style e24e2ad8_3e06_59e8_9128_fb1e09cbaca6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/logging/logback/LogbackConfigurationAotContributionTests.java lines 288–297

	private Properties load(InputStreamSource source) {
		try (InputStream inputStream = source.getInputStream()) {
			Properties properties = new Properties();
			properties.load(inputStream);
			return properties;
		}
		catch (IOException ex) {
			throw new RuntimeException(ex);
		}
	}

Domain

Subdomains

Frequently Asked Questions

What does load() do?
load() is a function in the spring-boot codebase.
What calls load()?
load() is called by 3 function(s): contributionOfBasicModel, contributionOfBasicModelThatMatchesExistingModel, patternRulesAreStoredAndRegisteredForReflection.

Analyze Your Own Codebase

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

Try Supermodel Free