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

repeatablePropertiesConditionReportWhenMatched() — spring-boot Function Reference

Architecture documentation for the repeatablePropertiesConditionReportWhenMatched() function in ConditionalOnBooleanPropertyTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  d04319d7_7d92_837b_324d_635e2a449866["repeatablePropertiesConditionReportWhenMatched()"]
  bdbaeb8a_5326_2c5d_9dd5_b161413d3b29["load()"]
  d04319d7_7d92_837b_324d_635e2a449866 -->|calls| bdbaeb8a_5326_2c5d_9dd5_b161413d3b29
  81ad36ab_2706_3651_bf7b_2adeb109bfbc["containsBean()"]
  d04319d7_7d92_837b_324d_635e2a449866 -->|calls| 81ad36ab_2706_3651_bf7b_2adeb109bfbc
  3c0b05ec_c93b_5e73_e6fa_0c1a67a3f298["getConditionEvaluationReport()"]
  d04319d7_7d92_837b_324d_635e2a449866 -->|calls| 3c0b05ec_c93b_5e73_e6fa_0c1a67a3f298
  style d04319d7_7d92_837b_324d_635e2a449866 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/condition/ConditionalOnBooleanPropertyTests.java lines 182–189

	@Test
	void repeatablePropertiesConditionReportWhenMatched() {
		load(RepeatablePropertiesRequiredConfiguration.class, "property1=true", "property2=true");
		assertThat(containsBean()).isTrue();
		String report = getConditionEvaluationReport();
		assertThat(report).contains("@ConditionalOnBooleanProperty (property1=true) matched");
		assertThat(report).contains("@ConditionalOnBooleanProperty (property2=true) matched");
	}

Domain

Subdomains

Frequently Asked Questions

What does repeatablePropertiesConditionReportWhenMatched() do?
repeatablePropertiesConditionReportWhenMatched() is a function in the spring-boot codebase.
What does repeatablePropertiesConditionReportWhenMatched() call?
repeatablePropertiesConditionReportWhenMatched() calls 3 function(s): containsBean, getConditionEvaluationReport, load.

Analyze Your Own Codebase

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

Try Supermodel Free