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

incompatibleConfigurationListsKeys() — spring-boot Function Reference

Architecture documentation for the incompatibleConfigurationListsKeys() function in IncompatibleConfigurationFailureAnalyzerTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  e491024d_f67e_f68a_811a_3b2da70b30c6["incompatibleConfigurationListsKeys()"]
  38f50424_9b3d_7934_9809_b004f8940b22["performAnalysis()"]
  e491024d_f67e_f68a_811a_3b2da70b30c6 -->|calls| 38f50424_9b3d_7934_9809_b004f8940b22
  ebc7cdd4_21bc_3491_686c_090da262ca48["getDescription()"]
  e491024d_f67e_f68a_811a_3b2da70b30c6 -->|calls| ebc7cdd4_21bc_3491_686c_090da262ca48
  1a4e5320_a2e2_8aa5_7d05_1e805db190f1["getAction()"]
  e491024d_f67e_f68a_811a_3b2da70b30c6 -->|calls| 1a4e5320_a2e2_8aa5_7d05_1e805db190f1
  style e491024d_f67e_f68a_811a_3b2da70b30c6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/IncompatibleConfigurationFailureAnalyzerTests.java lines 33–41

	@Test
	void incompatibleConfigurationListsKeys() {
		FailureAnalysis failureAnalysis = performAnalysis("spring.first.key", "spring.second.key");
		assertThat(failureAnalysis).isNotNull();
		assertThat(failureAnalysis.getDescription()).contains(
				"The following configuration properties have incompatible values: [spring.first.key, spring.second.key]");
		assertThat(failureAnalysis.getAction())
			.contains("Review the docs for spring.first.key, spring.second.key and change the configured values.");
	}

Domain

Subdomains

Calls

Frequently Asked Questions

What does incompatibleConfigurationListsKeys() do?
incompatibleConfigurationListsKeys() is a function in the spring-boot codebase.
What does incompatibleConfigurationListsKeys() call?
incompatibleConfigurationListsKeys() calls 3 function(s): getAction, getDescription, performAnalysis.

Analyze Your Own Codebase

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

Try Supermodel Free