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

getExcludeAutoConfigurationsProperty() — spring-boot Function Reference

Architecture documentation for the getExcludeAutoConfigurationsProperty() function in AutoConfigurationImportSelector.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 4 called by 1

Entity Profile

Dependency Diagram

graph TD
  f29c9058_ac93_4e80_36b2_142eac2ceb5a["getExcludeAutoConfigurationsProperty()"]
  518721a8_e958_96e7_fc0f_799c8ff7a007["getExclusions()"]
  518721a8_e958_96e7_fc0f_799c8ff7a007 -->|calls| f29c9058_ac93_4e80_36b2_142eac2ceb5a
  cb49735c_8f92_2689_a995_250e97dfa12f["getEnvironment()"]
  f29c9058_ac93_4e80_36b2_142eac2ceb5a -->|calls| cb49735c_8f92_2689_a995_250e97dfa12f
  c90d60de_6e4d_b157_5121_acbc78d427f0["get()"]
  f29c9058_ac93_4e80_36b2_142eac2ceb5a -->|calls| c90d60de_6e4d_b157_5121_acbc78d427f0
  8297d150_846a_4cc4_47ca_e6d5a70497f3["bind()"]
  f29c9058_ac93_4e80_36b2_142eac2ceb5a -->|calls| 8297d150_846a_4cc4_47ca_e6d5a70497f3
  31135ede_5a86_a22d_4e4c_1fcb98fed4c7["asList()"]
  f29c9058_ac93_4e80_36b2_142eac2ceb5a -->|calls| 31135ede_5a86_a22d_4e4c_1fcb98fed4c7
  style f29c9058_ac93_4e80_36b2_142eac2ceb5a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationImportSelector.java lines 263–276

	protected List<String> getExcludeAutoConfigurationsProperty() {
		Environment environment = getEnvironment();
		if (environment == null) {
			return Collections.emptyList();
		}
		if (environment instanceof ConfigurableEnvironment) {
			Binder binder = Binder.get(environment);
			return binder.bind(PROPERTY_NAME_AUTOCONFIGURE_EXCLUDE, String[].class)
				.map(Arrays::asList)
				.orElse(Collections.emptyList());
		}
		String[] excludes = environment.getProperty(PROPERTY_NAME_AUTOCONFIGURE_EXCLUDE, String[].class);
		return (excludes != null) ? Arrays.asList(excludes) : Collections.emptyList();
	}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does getExcludeAutoConfigurationsProperty() do?
getExcludeAutoConfigurationsProperty() is a function in the spring-boot codebase.
What does getExcludeAutoConfigurationsProperty() call?
getExcludeAutoConfigurationsProperty() calls 4 function(s): asList, bind, get, getEnvironment.
What calls getExcludeAutoConfigurationsProperty()?
getExcludeAutoConfigurationsProperty() is called by 1 function(s): getExclusions.

Analyze Your Own Codebase

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

Try Supermodel Free