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

resolve() — spring-boot Function Reference

Architecture documentation for the resolve() function in ConfigDataImporter.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  1cc05fe2_bfe5_5e8f_0596_355e98f8a3fe["resolve()"]
  089800ac_3248_6b6d_bf19_d7cdeeefa98f["resolveAndLoad()"]
  089800ac_3248_6b6d_bf19_d7cdeeefa98f -->|calls| 1cc05fe2_bfe5_5e8f_0596_355e98f8a3fe
  02d48096_7050_b591_e9c9_39e9f999235a["handle()"]
  1cc05fe2_bfe5_5e8f_0596_355e98f8a3fe -->|calls| 02d48096_7050_b591_e9c9_39e9f999235a
  style 1cc05fe2_bfe5_5e8f_0596_355e98f8a3fe fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataImporter.java lines 95–102

	private List<ConfigDataResolutionResult> resolve(ConfigDataLocationResolverContext locationResolverContext,
			@Nullable Profiles profiles, List<ConfigDataLocation> locations) {
		List<ConfigDataResolutionResult> resolved = new ArrayList<>(locations.size());
		for (ConfigDataLocation location : locations) {
			resolved.addAll(resolve(locationResolverContext, profiles, location));
		}
		return Collections.unmodifiableList(resolved);
	}

Domain

Subdomains

Calls

Called By

  • resolveAndLoad()

Frequently Asked Questions

What does resolve() do?
resolve() is a function in the spring-boot codebase.
What does resolve() call?
resolve() calls 1 function(s): handle.
What calls resolve()?
resolve() is called by 1 function(s): resolveAndLoad.

Analyze Your Own Codebase

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

Try Supermodel Free