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

getConfigNames() — spring-boot Function Reference

Architecture documentation for the getConfigNames() function in StandardConfigDataLocationResolver.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  06b9f324_6bf7_7509_7d16_22d0b15e1e33["getConfigNames()"]
  5dce15ea_8668_7cc6_2535_df97ddfdade6["StandardConfigDataLocationResolver()"]
  5dce15ea_8668_7cc6_2535_df97ddfdade6 -->|calls| 06b9f324_6bf7_7509_7d16_22d0b15e1e33
  8297d150_846a_4cc4_47ca_e6d5a70497f3["bind()"]
  06b9f324_6bf7_7509_7d16_22d0b15e1e33 -->|calls| 8297d150_846a_4cc4_47ca_e6d5a70497f3
  564d5016_0c1d_396a_b363_aa096e27abe9["validateConfigName()"]
  06b9f324_6bf7_7509_7d16_22d0b15e1e33 -->|calls| 564d5016_0c1d_396a_b363_aa096e27abe9
  style 06b9f324_6bf7_7509_7d16_22d0b15e1e33 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

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

	private String[] getConfigNames(Binder binder) {
		String[] configNames = binder.bind(CONFIG_NAME_PROPERTY, String[].class).orElse(DEFAULT_CONFIG_NAMES);
		for (String configName : configNames) {
			validateConfigName(configName);
		}
		return configNames;
	}

Domain

Subdomains

Calls

Called By

  • StandardConfigDataLocationResolver()

Frequently Asked Questions

What does getConfigNames() do?
getConfigNames() is a function in the spring-boot codebase.
What does getConfigNames() call?
getConfigNames() calls 2 function(s): bind, validateConfigName.
What calls getConfigNames()?
getConfigNames() is called by 1 function(s): StandardConfigDataLocationResolver.

Analyze Your Own Codebase

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

Try Supermodel Free